mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
python-packages: add pytest-cov-1.8.1
This commit is contained in:
parent
37a90efc45
commit
70eb7cf012
1 changed files with 19 additions and 0 deletions
|
@ -2007,6 +2007,25 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pytestcov = buildPythonPackage (rec {
|
||||||
|
name = "pytest-cov-1.8.1";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/p/pytest-cov/${name}.tar.gz";
|
||||||
|
md5 = "76c778afa2494088270348be42d759fc";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = with self; [ covCore pytest ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "py.test plugin for coverage reporting with support for both centralised and distributed testing, including subprocesses and multiprocessing";
|
||||||
|
|
||||||
|
homepage = https://github.com/schlamar/pytest-cov;
|
||||||
|
|
||||||
|
license = stdenv.lib.licenses.mit;
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
pytest_xdist = buildPythonPackage rec {
|
pytest_xdist = buildPythonPackage rec {
|
||||||
name = "pytest-xdist-1.8";
|
name = "pytest-xdist-1.8";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue