mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python-packages: add nosexcover-1.0.10
This commit is contained in:
parent
1fe1f73089
commit
4607e0711c
1 changed files with 19 additions and 0 deletions
|
@ -6658,6 +6658,25 @@ let
|
|||
doCheck = false;
|
||||
});
|
||||
|
||||
nosexcover = buildPythonPackage (rec {
|
||||
name = "nosexcover-1.0.10";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/n/nosexcover/${name}.tar.gz";
|
||||
md5 = "12bf494a801b376debeb6a167c247391";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ coverage nose ];
|
||||
|
||||
meta = {
|
||||
description = "Extends nose.plugins.cover to add Cobertura-style XML reports";
|
||||
|
||||
homepage = http://github.com/cmheisel/nose-xcover/;
|
||||
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
};
|
||||
});
|
||||
|
||||
nosejs = buildPythonPackage {
|
||||
name = "nosejs-0.9.4";
|
||||
src = pkgs.fetchurl {
|
||||
|
|
Loading…
Reference in a new issue