summary refs log tree commit diff
diff options
context:
space:
mode:
authordesiderius <didier@devroye.name>2015-02-26 17:17:01 +0100
committerdesiderius <didier@devroye.name>2015-02-26 17:17:01 +0100
commit70eb7cf0120e9ae0b5088277f29581ba6a0500b9 (patch)
treed17e582bfc46b33b0db7a79e8f8782c909513aaa
parent37a90efc455ca7c7c81bd055a0301b83af81bcbb (diff)
downloadnixlib-70eb7cf0120e9ae0b5088277f29581ba6a0500b9.tar
nixlib-70eb7cf0120e9ae0b5088277f29581ba6a0500b9.tar.gz
nixlib-70eb7cf0120e9ae0b5088277f29581ba6a0500b9.tar.bz2
nixlib-70eb7cf0120e9ae0b5088277f29581ba6a0500b9.tar.lz
nixlib-70eb7cf0120e9ae0b5088277f29581ba6a0500b9.tar.xz
nixlib-70eb7cf0120e9ae0b5088277f29581ba6a0500b9.tar.zst
nixlib-70eb7cf0120e9ae0b5088277f29581ba6a0500b9.zip
python-packages: add pytest-cov-1.8.1
-rw-r--r--pkgs/top-level/python-packages.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 4e474376f872..6fc91187b8cd 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -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";