pythonPackages: add pip2nix
This commit is contained in:
parent
f3ef08c6c8
commit
cff04e5503
|
@ -4056,6 +4056,16 @@ in {
|
|||
};
|
||||
});
|
||||
|
||||
contexter = buildPythonPackage rec {
|
||||
name = "contexter-${version}";
|
||||
version = "0.1.3";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/c/contexter/${name}.tar.gz";
|
||||
sha256 = "0xrnkjya29ya0hkj8y4k9ni2mnr58i6r0xfqlj7wk07v4jfrkc8n";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
contextlib2 = buildPythonPackage rec {
|
||||
name = "contextlib2-${version}";
|
||||
|
@ -23285,6 +23295,18 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
pip2nix = buildPythonPackage rec {
|
||||
name = "pip2nix-${version}";
|
||||
version = "0.3.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/p/pip2nix/${name}.tar.gz";
|
||||
sha256 = "1s76i8r4khq8y5r6g4218jg2c6qldmw5xhzymxad51ii8hafpwq6";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ click configobj contexter jinja2 pytest ];
|
||||
};
|
||||
|
||||
pychef = buildPythonPackage rec {
|
||||
name = "PyChef-${version}";
|
||||
version = "0.3.0";
|
||||
|
|
Loading…
Reference in New Issue