about summary refs log tree commit diff
path: root/doc/shell.nix
blob: 453398cfc6ce87b347b8a00b7a69561deeaaabbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
with import <nixpkgs> {};
mkShell {
  packages = (with python3Packages; [
    doit lxml mistune pygments
  ]) ++ [ nodejs nodePackages.katex ];

  shellHook = ''
    PYTHONPATH=../src:$PYTHONPATH
  '';
}