mach-nix/shell.nix

22 lines
525 B
Nix
Raw Normal View History

2020-10-09 15:18:34 +00:00
{
pkgs ? import (import ./mach_nix/nix/nixpkgs-src.nix) { config = {}; },
2021-06-06 07:57:04 +00:00
pypiData,
2020-10-09 15:18:34 +00:00
...
}:
with pkgs;
let
2021-05-23 06:05:16 +00:00
python = python38;
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 = [
2021-06-06 07:57:04 +00:00
(python.withPackages ( ps: with ps; machnixDeps ++ [ pytest_6 pytest-xdist twine ] ))
nix-prefetch-git
2020-04-22 09:28:58 +00:00
];
shellHook = ''
export PYTHONPATH=$(pwd)/
2021-06-06 07:57:04 +00:00
export PYPI_DATA=${pypiData}
2021-03-12 05:31:06 +00:00
git config core.hooksPath ./git-hooks
2020-04-22 09:28:58 +00:00
'';
}