pythonPackages: deprecate pytest_xdist alias

This commit is contained in:
Sandro Jäckel
2021-07-21 13:32:52 +02:00
parent dd712027be
commit 2e9c330216
24 changed files with 37 additions and 38 deletions
@@ -1,6 +1,6 @@
{ lib, buildPythonPackage, fetchFromGitHub
, isPy3k, attrs, coverage, enum34, pexpect
, doCheck ? true, pytest, pytest_xdist, flaky, mock
, doCheck ? true, pytest, pytest-xdist, flaky, mock
, sortedcontainers
}:
buildPythonPackage rec {
@@ -29,7 +29,7 @@ buildPythonPackage rec {
sortedcontainers
] ++ lib.optional (!isPy3k) enum34;
checkInputs = [ pytest pytest_xdist flaky mock pexpect ];
checkInputs = [ pytest pytest-xdist flaky mock pexpect ];
inherit doCheck;
checkPhase = ''