Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, nose 5}: 6 7 8buildPythonPackage rec { 9 pname = "nose-cprof"; 10 version = "0.2.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "0178834759b63dc50388444d4ff8d1ae84e1ba110bb167419afee6bf4699b119"; 15 }; 16 17 buildInputs = [ nose ]; 18 19 meta = with lib; { 20 description = "A python nose plugin to profile using cProfile rather than the default Hotshot profiler"; 21 homepage = "https://github.com/msherry/nose-cprof"; 22 license = licenses.bsd0; 23 }; 24 25}