pythonPackages.nosexcover: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
962ff0296f
commit
94b15aa9e6
25
pkgs/development/python-modules/nosexcover/default.nix
Normal file
25
pkgs/development/python-modules/nosexcover/default.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, coverage
|
||||
, nose
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "nosexcover";
|
||||
version = "1.0.10";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "f5b3a7c936c4f703f15418c1f325775098184b69fa572f868edb8a99f8f144a8";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ coverage nose ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Extends nose.plugins.cover to add Cobertura-style XML reports";
|
||||
homepage = https://github.com/cmheisel/nose-xcover/;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user