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