python3Packages.pytest-cov: fix build, add missing deps

This commit is contained in:
Jonathan Ringer 2021-06-18 16:41:54 -07:00 committed by Martin Weinelt
parent 1603996fa0
commit 62fafe2329

View file

@ -3,6 +3,7 @@
, fetchPypi , fetchPypi
, pytest , pytest
, coverage , coverage
, toml
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -16,7 +17,7 @@ buildPythonPackage rec {
buildInputs = [ pytest ]; buildInputs = [ pytest ];
propagatedBuildInputs = [ coverage ]; propagatedBuildInputs = [ coverage toml ];
# xdist related tests fail with the following error # xdist related tests fail with the following error
# OSError: [Errno 13] Permission denied: 'py/_code' # OSError: [Errno 13] Permission denied: 'py/_code'