##// END OF EJS Templates
py3: packaging changes to build python37 packages, and make pip2nix work.
py3: packaging changes to build python37 packages, and make pip2nix work.

File last commit:

r981:55389aab python3
r981:55389aab python3
Show More
pip2nix.nix
29 lines | 562 B | text/x-nix | NixLexer
nix: updated to 18.03 packages....
r472 { pkgs
, pythonPackages
}:
rec {
pip2nix-src = pkgs.fetchzip {
py3: switch to latest pip2nix
r978 url = https://code.rhodecode.com/upstream/pip2nix/artifacts/download/0-007f541a-7294-4a4c-9b52-ba102ce265f1.tar.gz;
sha256 = "02747glj0v6pdj0ylcwnrvp38ig8ramvipn9z3la9gknx6rhxrh6";
nix: updated to 18.03 packages....
r472 };
pip2nix = import pip2nix-src {
inherit
pkgs
pythonPackages;
};
py3: packaging changes to build python37 packages, and make pip2nix work.
r981 flit = pythonPackages.flit;
cython = pythonPackages.pip-tools;
pip2nix: cleanups and NEW package
r975 pip-tools = pythonPackages.pip-tools;
setuptools = pythonPackages.setuptools;
wheel = pythonPackages.wheel;
pip = pythonPackages.pip;
nix: updated to 18.03 packages....
r472 }