Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / nosexcover / default.nix
blobf60ed65448d74f91249b1fb95ee8e028a1479fb6
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , coverage
5 , nose
6 }:
8 buildPythonPackage rec {
9   pname = "nosexcover";
10   version = "1.0.11";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "298c3c655da587f6cab8a666e9f4b150320032431062dea91353988d45c8b883";
15   };
17   propagatedBuildInputs = [ coverage nose ];
19   meta = with lib; {
20     description = "Extends nose.plugins.cover to add Cobertura-style XML reports";
21     homepage = "https://github.com/cmheisel/nose-xcover/";
22     license = licenses.bsd3;
23   };