nixpkgs/pkgs/development/python-modules/runsnakerun/default.nix

26 lines
507 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, squaremap
, wxPython
}:
buildPythonPackage rec {
pname = "runsnakerun";
2019-12-10 18:07:42 +00:00
version = "2.0.5";
src = fetchPypi {
inherit pname version;
2019-12-10 18:07:42 +00:00
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;
};
}