depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-cov/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

38 lines
922 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, coverage
, toml
}:
buildPythonPackage rec {
pname = "pytest-cov";
version = "2.12.1";
src = fetchPypi {
inherit pname version;
sha256 = "1mzl06m8qcgsac1r2krixrkqdwq0nqk8asrpkcj2ddr7qawfw716";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ coverage toml ];
# 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;
};
}