python3Packages.pytest-xdist: don't propagate pytest

pytest extensions should not propagate pytest. Doing so makes it
impossible to combine the package with another version of pytest, which
sometimes is needed.
This commit is contained in:
Frederik Rietdijk 2021-03-08 17:57:14 +01:00
parent c44ae94eab
commit 1ceaf03f8a

View File

@ -22,8 +22,11 @@ buildPythonPackage rec {
}; };
nativeBuildInputs = [ setuptools_scm ]; nativeBuildInputs = [ setuptools_scm ];
buildInputs = [
pytest
];
checkInputs = [ pytestCheckHook filelock ]; checkInputs = [ pytestCheckHook filelock ];
propagatedBuildInputs = [ execnet pytest pytest-forked psutil ]; propagatedBuildInputs = [ execnet pytest-forked psutil ];
# access file system # access file system
disabledTests = [ disabledTests = [