1 { lib, buildPythonPackage, fetchFromGitHub }:
3 buildPythonPackage rec {
4 pname = "pyprof2calltree";
8 # Fetch from GitHub because the PyPi packaged version does not
9 # include all test files.
10 src = fetchFromGitHub {
12 repo = "pyprof2calltree";
14 sha256 = "0akighssiswfhi5285rrj37am6flg3ip17c34bayq3r8yyk1iciy";
18 description = "Help visualize profiling data from cProfile with kcachegrind and qcachegrind";
19 mainProgram = "pyprof2calltree";
20 homepage = "https://github.com/pwaller/pyprof2calltree";
21 changelog = "https://github.com/pwaller/pyprof2calltree/releases/tag/v${version}";
22 license = licenses.mit;
23 maintainers = with maintainers; [ sfrijters ];