8 buildPythonPackage rec {
9 pname = "pyprof2calltree";
13 # Fetch from GitHub because the PyPi packaged version does not
14 # include all test files.
15 src = fetchFromGitHub {
17 repo = "pyprof2calltree";
19 hash = "sha256-PrIYpvcoD+zVIoOdcON41JmqzpA5FyRKhI7rqDV8cSo=";
22 build-system = [ setuptools ];
25 description = "Help visualize profiling data from cProfile with kcachegrind and qcachegrind";
26 mainProgram = "pyprof2calltree";
27 homepage = "https://github.com/pwaller/pyprof2calltree";
28 changelog = "https://github.com/pwaller/pyprof2calltree/releases/tag/v${version}";
29 license = licenses.mit;
30 maintainers = with maintainers; [ sfrijters ];