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/nose-cov/default.nix

20 lines
543 B

{ buildPythonPackage, fetchPypi, lib, nose, covCore }:
buildPythonPackage rec {
pname = "nose-cov";
version = "1.6";
src = fetchPypi {
inherit pname version;
sha256 = "04j4fw01bv648gimqqj4z88606lcczbm1k326agcc74gb4sh7v4b";
};
propagatedBuildInputs = [ nose covCore ];
meta = with lib; {
homepage = "https://pypi.org/project/nose-cov/";
license = licenses.mit;
description = "This plugin produces coverage reports. It also supports coverage of subprocesses.";
maintainers = with maintainers; [ ];
};
}