python3Packages.pip2nix: remove
This commit is contained in:
parent
e3e39aa84e
commit
95996a837d
2 changed files with 0 additions and 42 deletions
|
@ -1,40 +0,0 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, click
|
||||
, configobj
|
||||
, contexter
|
||||
, jinja2
|
||||
, pytest
|
||||
, pip
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pip2nix";
|
||||
version = "0.7.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "ec9a71e09ac7f43cc7b6c9d386384eb7b5c331bf6ea0e72ca559d87979397a95";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ click configobj contexter pip jinja2 pytest ];
|
||||
|
||||
postPatch = ''
|
||||
sed -i "s/'pip>=8,<10'/'pip'/" setup.py
|
||||
sed -i "s/pip<10,>=8/pip/" ${pname}.egg-info/requires.txt
|
||||
'';
|
||||
|
||||
# tests not included with pypi release
|
||||
doCheck = false;
|
||||
|
||||
# Requires an old pip version
|
||||
broken = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Generate Nix expressions for Python packages";
|
||||
homepage = "https://github.com/johbo/pip2nix";
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
|
||||
}
|
|
@ -4405,8 +4405,6 @@ in {
|
|||
|
||||
pint = callPackage ../development/python-modules/pint { };
|
||||
|
||||
pip2nix = callPackage ../development/python-modules/pip2nix { };
|
||||
|
||||
pip = callPackage ../development/python-modules/pip { };
|
||||
|
||||
pipdate = callPackage ../development/python-modules/pipdate { };
|
||||
|
|
Loading…
Reference in a new issue