about summary refs log tree commit diff
path: root/pkgs/development/python-modules/snakeviz
diff options
context:
space:
mode:
authorAndrew R. M <andrewmiller237@gmail.com>2017-02-21 16:44:03 -0500
committerAndrew R. M <andrewmiller237@gmail.com>2017-02-22 08:14:53 -0500
commit99754b2527073c2733541e9a578da7d32091c928 (patch)
treeb3dc40d9eb60723ebed521fb2f243d831abb74f2 /pkgs/development/python-modules/snakeviz
parentfd732dec888dc39f68e53114171789bbb913c33c (diff)
downloadnixlib-99754b2527073c2733541e9a578da7d32091c928.tar
nixlib-99754b2527073c2733541e9a578da7d32091c928.tar.gz
nixlib-99754b2527073c2733541e9a578da7d32091c928.tar.bz2
nixlib-99754b2527073c2733541e9a578da7d32091c928.tar.lz
nixlib-99754b2527073c2733541e9a578da7d32091c928.tar.xz
nixlib-99754b2527073c2733541e9a578da7d32091c928.tar.zst
nixlib-99754b2527073c2733541e9a578da7d32091c928.zip
pythonPackages.snakeviz: init at 0.4.1
Diffstat (limited to 'pkgs/development/python-modules/snakeviz')
-rw-r--r--pkgs/development/python-modules/snakeviz/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/snakeviz/default.nix b/pkgs/development/python-modules/snakeviz/default.nix
new file mode 100644
index 000000000000..be6f86dae545
--- /dev/null
+++ b/pkgs/development/python-modules/snakeviz/default.nix
@@ -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 ];
+  };
+}