forked from DavHau/mach-nix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.nix
More file actions
32 lines (32 loc) · 765 Bytes
/
shell.nix
File metadata and controls
32 lines (32 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
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"]; };
},
...
}:
let
pythonWithPkgs = import ./mach_nix/nix/python.nix {
inherit pkgs;
dev = true;
};
in
pkgs.mkShell {
buildInputs =
[ pythonWithPkgs ]
++
(with pkgs; [
git
nix-prefetch-git
parallel
]);
shellHook = ''
export PYTHONPATH=$(pwd)/
export PYPI_DATA=${pypiData}
export CONDA_DATA=${chondaChannelsJson.condaChannelsJson}
git config core.hooksPath ./git-hooks
'';
}