1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, squaremap
5, wxPython
6}:
7
8buildPythonPackage rec {
9 pname = "runsnakerun";
10 version = "2.0.4";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "61d03a13f1dcb3c1829f5a146da1fe0cc0e27947558a51e848b6d469902815ef";
15 };
16
17 propagatedBuildInputs = [ squaremap wxPython ];
18
19 meta = with stdenv.lib; {
20 description = "GUI Viewer for Python profiling runs";
21 homepage = http://www.vrplumber.com/programming/runsnakerun/;
22 license = licenses.bsd3;
23 };
24
25}