Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 22 lines 572 B view raw
1{ stdenv, fetchPypi, buildPythonPackage, tornado }: 2 3buildPythonPackage rec { 4 pname = "snakeviz"; 5 version = "2.0.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "11a8cd4g98vq2x61i99ncl5w83clnndwg909ya4y1cdf0k1ckb40"; 10 }; 11 12 # Upstream doesn't run tests from setup.py 13 doCheck = false; 14 propagatedBuildInputs = [ tornado ]; 15 16 meta = with stdenv.lib; { 17 description = "Browser based viewer for profiling data"; 18 homepage = https://jiffyclub.github.io/snakeviz; 19 license = licenses.bsd3; 20 maintainers = with maintainers; [ nixy ]; 21 }; 22}