Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pyprof2calltree / default.nix
blob7244438c6e0814b9130acdf19bec9e73b1d3653f
1 { lib, buildPythonPackage, fetchFromGitHub }:
3 buildPythonPackage rec {
4   pname = "pyprof2calltree";
5   version = "1.4.5";
7   # Fetch from GitHub because the PyPi packaged version does not
8   # include all test files.
9   src = fetchFromGitHub {
10     owner = "pwaller";
11     repo = "pyprof2calltree";
12     rev = "v" + version;
13     sha256 = "0akighssiswfhi5285rrj37am6flg3ip17c34bayq3r8yyk1iciy";
14   };
16   meta = with lib; {
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 ];
21   };