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

24 lines
659 B
Nix
Raw Normal View History

2019-06-02 21:10:42 +00:00
{ lib, fetchFromGitHub, buildPythonApplication, python, graphviz }:
buildPythonApplication rec {
pname = "gprof2dot";
version = "2019.11.30";
src = fetchFromGitHub {
owner = "jrfonseca";
repo = "gprof2dot";
rev = version;
2019-12-25 09:29:25 +00:00
sha256 = "1nw4cfwimd0djarw4wc756q095xir78js8flmycg6g7sl3l6p27s";
};
2019-06-02 21:10:42 +00:00
checkInputs = [ graphviz ];
checkPhase = "${python.interpreter} tests/test.py";
2019-01-25 15:18:41 +00:00
meta = with lib; {
2019-12-25 09:29:25 +00:00
homepage = "https://github.com/jrfonseca/gprof2dot";
description = "Python script to convert the output from many profilers into a dot graph";
license = licenses.lgpl3Plus;
2019-01-25 15:18:41 +00:00
maintainers = [ maintainers.pmiddend ];
};
}