summary refs log tree commit diff
path: root/pkgs/development/python-modules/multidict
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-11-04 17:17:40 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-12-03 16:50:38 +0100
commitb2a31e10d153a8156350bd6001a1d6e8fe6dc5f6 (patch)
tree26cd813895b7a4ac5ccc9f7cf5509b9c1bce89b5 /pkgs/development/python-modules/multidict
parent4f8d1006b81eb713392aa12a345c9792f96a86e7 (diff)
downloadnixpkgs-b2a31e10d153a8156350bd6001a1d6e8fe6dc5f6.tar
nixpkgs-b2a31e10d153a8156350bd6001a1d6e8fe6dc5f6.tar.gz
nixpkgs-b2a31e10d153a8156350bd6001a1d6e8fe6dc5f6.tar.bz2
nixpkgs-b2a31e10d153a8156350bd6001a1d6e8fe6dc5f6.tar.lz
nixpkgs-b2a31e10d153a8156350bd6001a1d6e8fe6dc5f6.tar.xz
nixpkgs-b2a31e10d153a8156350bd6001a1d6e8fe6dc5f6.tar.zst
nixpkgs-b2a31e10d153a8156350bd6001a1d6e8fe6dc5f6.zip
python3.pkgs.multidict: add pytestcov to checkInputs
Diffstat (limited to 'pkgs/development/python-modules/multidict')
-rw-r--r--pkgs/development/python-modules/multidict/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/multidict/default.nix b/pkgs/development/python-modules/multidict/default.nix
index fc16fa5aec3..eb5ef396a4f 100644
--- a/pkgs/development/python-modules/multidict/default.nix
+++ b/pkgs/development/python-modules/multidict/default.nix
@@ -1,7 +1,7 @@
 { lib
 , fetchPypi
 , buildPythonPackage
-, pytest, pytestrunner
+, pytest, pytestrunner, pytestcov
 , isPy3k
 }:
 
@@ -14,7 +14,7 @@ buildPythonPackage rec {
     sha256 = "3c11e92c3dfc321014e22fb442bc9eb70e01af30d6ce442026b0c35723448c66";
   };
 
-  checkInputs = [ pytest pytestrunner ];
+  checkInputs = [ pytest pytestrunner pytestcov ];
 
   disabled = !isPy3k;