python3Packages.pytest-forked: 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:56:24 +01:00
parent fe45edd2ef
commit c44ae94eab

View File

@ -18,7 +18,13 @@ buildPythonPackage rec {
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ py pytest ];
buildInputs = [
pytest
];
propagatedBuildInputs = [
py
];
checkInputs = [ pytestCheckHook ];