{ pkgs ? import (import ./npins).nixpkgs {} }:
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (ps: [
ps.mkdocs,
ps.mkdocs-terminal
]))
];
}