f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
45 lines
980 B
Nix
45 lines
980 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytest,
|
|
coverage,
|
|
toml,
|
|
tomli,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-cov";
|
|
version = "5.0.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-WDe1jp9uvTNbD4Bg7szmm2YkFbFtxQOIOgL0Xf6xSFc=";
|
|
};
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [
|
|
coverage
|
|
toml
|
|
tomli
|
|
];
|
|
|
|
# xdist related tests fail with the following error
|
|
# OSError: [Errno 13] Permission denied: 'py/_code'
|
|
doCheck = false;
|
|
checkPhase = ''
|
|
# allow to find the module helper during the test run
|
|
export PYTHONPATH=$PYTHONPATH:$PWD/tests
|
|
py.test tests
|
|
'';
|
|
|
|
pythonImportsCheck = [ "pytest_cov" ];
|
|
|
|
meta = with lib; {
|
|
description = "Plugin for coverage reporting with support for both centralised and distributed testing, including subprocesses and multiprocessing";
|
|
homepage = "https://github.com/pytest-dev/pytest-cov";
|
|
license = licenses.mit;
|
|
};
|
|
}
|