My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/nosexcover/default.nix

25 lines
513 B

{ lib
, buildPythonPackage
, fetchPypi
, coverage
, nose
}:
buildPythonPackage rec {
pname = "nosexcover";
version = "1.0.11";
src = fetchPypi {
inherit pname version;
sha256 = "298c3c655da587f6cab8a666e9f4b150320032431062dea91353988d45c8b883";
};
propagatedBuildInputs = [ coverage nose ];
meta = with lib; {
description = "Extends nose.plugins.cover to add Cobertura-style XML reports";
homepage = "https://github.com/cmheisel/nose-xcover/";
license = licenses.bsd3;
};
}