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
1 changed files with 4 additions and 1 deletions

View File

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