1 { lib, buildPythonPackage, fetchFromGitHub }:
3 buildPythonPackage rec {
4 pname = "pyprof2calltree";
7 # Fetch from GitHub because the PyPi packaged version does not
8 # include all test files.
9 src = fetchFromGitHub {
11 repo = "pyprof2calltree";
13 sha256 = "0akighssiswfhi5285rrj37am6flg3ip17c34bayq3r8yyk1iciy";
17 description = "Help visualize profiling data from cProfile with kcachegrind and qcachegrind";
18 homepage = "https://pypi.python.org/pypi/pyprof2calltree/";
19 license = licenses.mit;
20 maintainers = with maintainers; [ sfrijters ];