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,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, pytest, pytestrunner, six, regex}:
{ lib, buildPythonPackage, fetchPypi, pytest, pytest-runner, six, regex}:
buildPythonPackage rec {
pname = "rebulk";
@@ -11,7 +11,7 @@ buildPythonPackage rec {
# Some kind of trickery with imports that doesn't work.
doCheck = false;
buildInputs = [ pytest pytestrunner ];
buildInputs = [ pytest pytest-runner ];
propagatedBuildInputs = [ six regex ];
meta = with lib; {