1{ lib, fetchPypi, buildPythonPackage, tornado }:
2
3buildPythonPackage rec {
4 pname = "snakeviz";
5 version = "2.1.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0d96c006304f095cb4b3fb7ed98bb866ca35a7ca4ab9020bbc27d295ee4c94d9";
10 };
11
12 # Upstream doesn't run tests from setup.py
13 doCheck = false;
14 propagatedBuildInputs = [ tornado ];
15
16 meta = with 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}