python.pkgs.pytest-cov: remove unused deps

This commit is contained in:
Frederik Rietdijk 2019-02-14 11:10:24 +01:00
parent 54941b106e
commit 64bc5fcf28

View File

@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, fetchPypi { stdenv, buildPythonPackage, fetchPypi
, pytest, pytest_xdist, virtualenv, process-tests, coverage }: , pytest, coverage }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytest-cov"; pname = "pytest-cov";
@ -10,7 +10,7 @@ buildPythonPackage rec {
sha256 = "0ab664b25c6aa9716cbf203b17ddb301932383046082c081b9848a0edf5add33"; sha256 = "0ab664b25c6aa9716cbf203b17ddb301932383046082c081b9848a0edf5add33";
}; };
buildInputs = [ pytest pytest_xdist virtualenv process-tests ]; buildInputs = [ pytest ];
propagatedBuildInputs = [ coverage ]; propagatedBuildInputs = [ coverage ];
# xdist related tests fail with the following error # xdist related tests fail with the following error