summary refs log tree commit diff
path: root/pkgs/development/python-modules/runsnakerun/default.nix
blob: 1475b00323138fee88f04e90c74b9877f32dae39 (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
24
25
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, squaremap
, wxPython
}:

buildPythonPackage rec {
  pname = "runsnakerun";
  version = "2.0.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a66a0cdf0333dc3c0830c18e2f3d62f741dea197cd01a7e0059da4886a3a123f";
  };

  propagatedBuildInputs = [ squaremap wxPython ];

  meta = with lib; {
    description = "GUI Viewer for Python profiling runs";
    homepage = "http://www.vrplumber.com/programming/runsnakerun/";
    license = licenses.bsd3;
  };

}