mach-nix/shell.nix

20 lines
467 B
Nix
Raw Normal View History

2020-10-09 15:18:34 +00:00
{
pkgs ? import (import ./mach_nix/nix/nixpkgs-src.nix) { config = {}; },
...
}:
with pkgs;
let
python = python37;
machnixDeps = (lib.attrValues (import ./mach_nix/nix/python-deps.nix { inherit python; fetchurl = fetchurl; }));
in
2020-04-22 09:28:58 +00:00
mkShell {
buildInputs = [
(python.withPackages ( ps: with ps; machnixDeps ++ [ pytest_6 twine ] ))
nix-prefetch-git
2020-04-22 09:28:58 +00:00
];
shellHook = ''
export PYTHONPATH=$(pwd)/
2021-03-12 05:31:06 +00:00
git config core.hooksPath ./git-hooks
2020-04-22 09:28:58 +00:00
'';
}