mach-nix/shell.nix

29 lines
846 B
Nix
Raw Normal View History

2020-10-09 15:18:34 +00:00
{
pkgs ? import (import ./mach_nix/nix/nixpkgs-src.nix) { config = {}; },
pypiData ? (import ./mach_nix/nix/deps-db-and-fetcher.nix {
inherit pkgs;
}).pypi_deps_db_src,
chondaChannelsJson ? import ./mach_nix/nix/conda-channels.nix {
providers = { _default = [ "conda/main" "conda/r" "conda/conda-forge"]; };
},
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
pkgs.parallel
2020-04-22 09:28:58 +00:00
];
shellHook = ''
export PYTHONPATH=$(pwd)/
2021-06-06 07:57:04 +00:00
export PYPI_DATA=${pypiData}
export CONDA_DATA=${chondaChannelsJson.condaChannelsJson}
2021-03-12 05:31:06 +00:00
git config core.hooksPath ./git-hooks
2020-04-22 09:28:58 +00:00
'';
}