1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, nose
5}:
6
7buildPythonPackage rec {
8 pname = "nose-cover3";
9 version = "0.1.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "1la4hhc1yszjpcchvkqk5xmzlb2g1b3fgxj9wwc58qc549whlcc1";
14 };
15
16 propagatedBuildInputs = [ nose ];
17
18 # No tests included
19 doCheck = false;
20
21 meta = with stdenv.lib; {
22 description = "Coverage 3.x support for Nose";
23 homepage = https://github.com/ask/nosecover3;
24 license = licenses.lgpl21;
25 };
26
27}