pythonPackages.urllib3: remove unnecessary substituteInPlace

`substituteInPlace` was operating on a non-existant file.
This commit is contained in:
Robin Gloster 2016-08-01 12:18:48 +00:00
parent afbeda22d5
commit d1d9b93417

View File

@ -5752,10 +5752,6 @@ in modules // {
sha256 = "1ikj72kd4cdcq7pmmcd5p6s9dvp7wi0zw01635v4xzkid5vi598f";
};
preConfigure = ''
substituteInPlace test-requirements.txt --replace 'nose==1.3' 'nose'
'';
doCheck = !isPy3k; # lots of transient failures
checkPhase = ''
# Not worth the trouble
@ -5768,7 +5764,6 @@ in modules // {
nosetests -v --cover-min-percentage 1
'';
buildInputs = with self; [ coverage tornado mock nose ];
meta = {