Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 23 lines 566 B view raw
1{ lib, buildPythonPackage, fetchPypi, nose }: 2 3buildPythonPackage rec { 4 pname = "yappi"; 5 version = "1.2.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "b8db9bc607610d6da4e27e87ec828ebddec4bdaac89ca07ebfe9a153b0641580"; 10 }; 11 12 patches = [ ./tests.patch ]; 13 14 checkInputs = [ nose ]; 15 16 meta = with lib; { 17 homepage = https://github.com/sumerc/yappi; 18 description = "Python profiler that supports multithreading and measuring CPU time"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ orivej ]; 21 broken = true; 22 }; 23}