Artifact 0c2df29181b6a63eaf427d0699ce3e25bbf48485011226b7ce56de26ffd0f29d:


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