Artifact e6110a00bc5f0800ee386110b91fe1e1324469dd3a10972db43f5ad31e5a92e4:


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