##// END OF EJS Templates
nix: updated to 18.03 nix packages...
nix: updated to 18.03 nix packages - dependencies: updated setuptools-scm to 2.1.0 - new strucutre - cleanups and optimize of build chain

File last commit:

r2824:5ac461b5 default
r2824:5ac461b5 default
Show More
pip2nix.nix
17 lines | 327 B | text/x-nix | NixLexer
nix: updated to 18.03 nix packages...
r2824 { pkgs
, pythonPackages
}:
rec {
pip2nix-src = pkgs.fetchzip {
url = https://github.com/johbo/pip2nix/archive/51e6fdae34d0e8ded9efeef7a8601730249687a6.tar.gz;
sha256 = "02a4jjgi7lsvf8mhrxsd56s9a3yg20081rl9bgc2m84w60v2gbz2";
};
pip2nix = import pip2nix-src {
inherit
pkgs
pythonPackages;
};
}