nixpkgs/pkgs/development/python-modules/nosexcover/default.nix

26 lines
521 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, coverage
, nose
}:
buildPythonPackage rec {
pname = "nosexcover";
2018-11-04 10:35:07 +00:00
version = "1.0.11";
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:07 +00:00
sha256 = "298c3c655da587f6cab8a666e9f4b150320032431062dea91353988d45c8b883";
};
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;
};
}