Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 546 B view raw
1{ buildPythonPackage, fetchPypi, lib, nose, covCore }: 2 3buildPythonPackage rec { 4 pname = "nose-cov"; 5 version = "1.6"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "04j4fw01bv648gimqqj4z88606lcczbm1k326agcc74gb4sh7v4b"; 10 }; 11 12 propagatedBuildInputs = [ nose covCore ]; 13 14 meta = with lib; { 15 homepage = https://pypi.org/project/nose-cov/; 16 license = licenses.mit; 17 description = "This plugin produces coverage reports. It also supports coverage of subprocesses."; 18 maintainers = with maintainers; [ ma27 ]; 19 }; 20}