python3.pkgs.multidict: add pytestcov to checkInputs

This commit is contained in:
Robert Schütz 2018-11-04 17:17:40 +01:00 committed by Frederik Rietdijk
parent 4f8d1006b8
commit b2a31e10d1
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ lib { lib
, fetchPypi , fetchPypi
, buildPythonPackage , buildPythonPackage
, pytest, pytestrunner , pytest, pytestrunner, pytestcov
, isPy3k , isPy3k
}: }:
@ -14,7 +14,7 @@ buildPythonPackage rec {
sha256 = "3c11e92c3dfc321014e22fb442bc9eb70e01af30d6ce442026b0c35723448c66"; sha256 = "3c11e92c3dfc321014e22fb442bc9eb70e01af30d6ce442026b0c35723448c66";
}; };
checkInputs = [ pytest pytestrunner ]; checkInputs = [ pytest pytestrunner pytestcov ];
disabled = !isPy3k; disabled = !isPy3k;