pythonPackages.snakeviz: init at 0.4.1
This commit is contained in:
parent
fd732dec88
commit
99754b2527
22
pkgs/development/python-modules/snakeviz/default.nix
Normal file
22
pkgs/development/python-modules/snakeviz/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchurl, buildPythonPackage, tornado }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "snakeviz-${version}";
|
||||
version = "0.4.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/s/snakeviz/${name}.tar.gz";
|
||||
sha256 = "18vsaw1wmf903fg21zkk6a9b49gj47g52jm5h52g4iygngjhpx79";
|
||||
};
|
||||
|
||||
# Upstream doesn't run tests from setup.py
|
||||
doCheck = false;
|
||||
propagatedBuildInputs = [ tornado ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Browser based viewer for profiling data";
|
||||
homepage = "https://jiffyclub.github.io/snakeviz";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ nixy ];
|
||||
};
|
||||
}
|
@ -32086,6 +32086,8 @@ EOF
|
||||
|
||||
treq = callPackage ../development/python-modules/treq { };
|
||||
|
||||
snakeviz = callPackage ../development/python-modules/snakeviz { };
|
||||
|
||||
});
|
||||
|
||||
in fix' (extends overrides packages)
|
||||
|
Loading…
Reference in New Issue
Block a user