pip: 1.2.1 -> 1.4.1 (CVE-2013-1888, CVE-2013-1629)

+6 -4
+6 -4
pkgs/top-level/python-packages.nix
··· 3793 }; 3794 }; 3795 3796 - pip = buildPythonPackage { 3797 - name = "pip-1.2.1"; 3798 src = fetchurl { 3799 - url = "http://pypi.python.org/packages/source/p/pip/pip-1.2.1.tar.gz"; 3800 - md5 = "db8a6d8a4564d3dc7f337ebed67b1a85"; 3801 }; 3802 buildInputs = [ mock scripttest virtualenv nose ]; 3803 # ValueError: Working directory tests not found, or not a directory 3804 doCheck = false; 3805 }; 3806
··· 3793 }; 3794 }; 3795 3796 + pip = buildPythonPackage rec { 3797 + version = "1.4.1"; 3798 + name = "pip-${version}"; 3799 src = fetchurl { 3800 + url = "http://pypi.python.org/packages/source/p/pip/pip-${version}.tar.gz"; 3801 + sha256 = "0knhj3c1nqqzxgqin8l0gzy6nzsbcxinyr0cbp1j99hi8xahcyjf"; 3802 }; 3803 buildInputs = [ mock scripttest virtualenv nose ]; 3804 # ValueError: Working directory tests not found, or not a directory 3805 + # see https://github.com/pypa/pip/issues/92 3806 doCheck = false; 3807 }; 3808