depot/third_party/nixpkgs/pkgs/development/python-modules/runsnakerun/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

25 lines
515 B
Nix

{ 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;
};
}