python2Packages.pytestrunner: keep 5.2

This commit is contained in:
Frederik Rietdijk
2021-04-03 17:49:42 +02:00
parent 516a7f72a8
commit 3955326221
2 changed files with 34 additions and 1 deletions
+4 -1
View File
@@ -6591,7 +6591,10 @@ in {
pytest-rerunfailures = callPackage ../development/python-modules/pytest-rerunfailures { };
pytest-runner = self.pytestrunner; # added 2021-01-04
pytestrunner = callPackage ../development/python-modules/pytestrunner { };
pytestrunner = if isPy3k then
callPackage ../development/python-modules/pytestrunner { }
else
callPackage ../development/python-modules/pytestrunner/2.nix { };
pytest-sanic = callPackage ../development/python-modules/pytest-sanic {
sanic = self.sanic.override { doCheck = false; };