python-packages: add pytest-cov-1.8.1

This commit is contained in:
desiderius 2015-02-26 17:17:01 +01:00
parent 37a90efc45
commit 70eb7cf012

View file

@ -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 {
name = "pytest-xdist-1.8";