Differences From Artifact [0c2df29181]:

To Artifact [e6110a00bc]:


1
2
3
4

5
6
7


8
9
10
11
12
1
2
3

4
5


6
7
8



9



-
+

-
-
+
+

-
-
-

with import <nixpkgs> {};
mkShell {
  venvDir = ".venv";
  buildInputs = with python3.pkgs; [
  buildInputs = [
    haskellPackages.pandoc
    weasyprint
    venvShellHook
    (python310.withPackages (p: with p; [ weasyprint mkdocs ]))
    python310Packages.venvShellHook
  ];
  postShellHook = ''
    pip install mkdocs-with-pdf
  '';
}