summary refs log tree commit diff
path: root/pkgs/development/python-modules/snakeviz/default.nix
blob: 64c68314753636462e59bb88d271f3d666e75458 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, buildPythonPackage, tornado }:

buildPythonPackage rec {
  pname = "snakeviz";
  name = "${pname}-${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 ];
  };
}