Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, coverage 5, nose 6}: 7 8buildPythonPackage rec { 9 pname = "nosexcover"; 10 version = "1.0.11"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "298c3c655da587f6cab8a666e9f4b150320032431062dea91353988d45c8b883"; 15 }; 16 17 propagatedBuildInputs = [ coverage nose ]; 18 19 meta = with lib; { 20 description = "Extends nose.plugins.cover to add Cobertura-style XML reports"; 21 homepage = "https://github.com/cmheisel/nose-xcover/"; 22 license = licenses.bsd3; 23 }; 24 25}