pythonPackages: deprecate pytestrunner alias

This commit is contained in:
Sandro Jäckel
2021-07-21 13:32:49 +02:00
parent 4209fed914
commit 9bfdf57e13
120 changed files with 218 additions and 220 deletions
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder
, mock, pytest, pytestrunner
, mock, pytest, pytest-runner
, configparser, enum34, mccabe, pycodestyle, pyflakes, functools32, typing ? null, importlib-metadata
}:
@@ -12,7 +12,7 @@ buildPythonPackage rec {
sha256 = "07528381786f2a6237b061f6e96610a4167b226cb926e2aa2b6b1d78057c576b";
};
checkInputs = [ pytest mock pytestrunner ];
checkInputs = [ pytest mock pytest-runner ];
propagatedBuildInputs = [ pyflakes pycodestyle mccabe ]
++ lib.optionals (pythonOlder "3.2") [ configparser functools32 ]
++ lib.optionals (pythonOlder "3.4") [ enum34 ]