Differences From Artifact [d47e05571e]:

To Artifact [0c2df29181]:


1
2
3


4
5

6
7


8



9
1


2
3


4
5

6
7
8
9
10
11
12

-
-
+
+
-
-
+

-
+
+

+
+
+

with import <nixpkgs> {};
stdenv.mkDerivation rec {
  name = "env";
mkShell {
  venvDir = ".venv";
  env = buildEnv { name = name; paths = buildInputs; };
  buildInputs = [
  buildInputs = with python3.pkgs; [
    haskellPackages.pandoc
    mkdocs
    weasyprint
    venvShellHook
  ];
  postShellHook = ''
    pip install mkdocs-with-pdf
  '';
}