02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
27 lines
538 B
Nix
27 lines
538 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, coverage
|
|
, nose
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nosexcover";
|
|
version = "1.0.11";
|
|
format = "setuptools";
|
|
|
|
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;
|
|
};
|
|
|
|
}
|