about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-cov/default.nix
blob: 88e77f9f7ce9253be87700bc29e88e78f9f833e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, coverage
, toml
, tomli
}:

buildPythonPackage rec {
  pname = "pytest-cov";
  version = "4.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-mWt5795kM829AIiHLbxfs+1/4VeLaM27pjTxS7jdBHA=";
  };

  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;
  };
}