Differences From Artifact [0c2df29181]:

To Artifact [e6110a00bc]:


1
2
3
4
5
6
7
8
9
10
11
12
with import <nixpkgs> {};
mkShell {
  venvDir = ".venv";
  buildInputs = with python3.pkgs; [
    haskellPackages.pandoc
    weasyprint
    venvShellHook
  ];
  postShellHook = ''
    pip install mkdocs-with-pdf
  '';
}



|

|
|

<
<
<

1
2
3
4
5
6
7
8



9
with import <nixpkgs> {};
mkShell {
  venvDir = ".venv";
  buildInputs = [
    haskellPackages.pandoc
    (python310.withPackages (p: with p; [ weasyprint mkdocs ]))
    python310Packages.venvShellHook
  ];



}