pip: 1.2.1 -> 1.4.1 (CVE-2013-1888, CVE-2013-1629)
This commit is contained in:
parent
45b8a1b1ff
commit
afdc44df8d
@ -3793,14 +3793,16 @@ pythonPackages = modules // import ./python-packages-generated.nix {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
pip = buildPythonPackage {
|
pip = buildPythonPackage rec {
|
||||||
name = "pip-1.2.1";
|
version = "1.4.1";
|
||||||
|
name = "pip-${version}";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://pypi.python.org/packages/source/p/pip/pip-1.2.1.tar.gz";
|
url = "http://pypi.python.org/packages/source/p/pip/pip-${version}.tar.gz";
|
||||||
md5 = "db8a6d8a4564d3dc7f337ebed67b1a85";
|
sha256 = "0knhj3c1nqqzxgqin8l0gzy6nzsbcxinyr0cbp1j99hi8xahcyjf";
|
||||||
};
|
};
|
||||||
buildInputs = [ mock scripttest virtualenv nose ];
|
buildInputs = [ mock scripttest virtualenv nose ];
|
||||||
# ValueError: Working directory tests not found, or not a directory
|
# ValueError: Working directory tests not found, or not a directory
|
||||||
|
# see https://github.com/pypa/pip/issues/92
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user