mach-nix/shell.nix

9 lines
221 B
Nix
Raw Normal View History

2020-04-22 09:28:58 +00:00
with import (import ./mach_nix/nix/nixpkgs-src.nix).stable { config = {}; };
mkShell {
buildInputs = [
(import ./mach_nix/nix/python.nix { inherit pkgs; })
];
shellHook = ''
export PYTHONPATH=$(pwd)/
'';
}