pythonPackages.pytestcov: 2.2.0 -> 2.3.1

This commit is contained in:
Frederik Rietdijk 2016-08-30 11:39:25 +02:00
parent 4b820b842b
commit ad633d39dd

View file

@ -4822,14 +4822,19 @@ in modules // {
};
pytestcov = buildPythonPackage (rec {
name = "pytest-cov-2.2.0";
name = "pytest-cov-2.3.1";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pytest-cov/${name}.tar.gz";
sha256 = "1lf9jsmhqk5nc4w3kzwglmdzjvmi7ajvrsnwv826j3bn0wzx8c92";
sha256 = "fa0a212283cdf52e2eecc24dd6459bb7687cc29adb60cb84258fab73be8dda0f";
};
buildInputs = with self; [ covCore pytest ];
buildInputs = with self; [ covCore pytest virtualenv process-tests helper ];
doCheck = false;
checkPhase = ''
py.test tests
'';
meta = {
description = "Plugin for coverage reporting with support for both centralised and distributed testing, including subprocesses and multiprocessing";