Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyprof2calltree / default.nix
blobdb979ae4297ec8bc646840ef509f482b48b9c366
1 { lib, buildPythonPackage, fetchFromGitHub }:
3 buildPythonPackage rec {
4   pname = "pyprof2calltree";
5   version = "1.4.5";
6   format = "setuptools";
8   # Fetch from GitHub because the PyPi packaged version does not
9   # include all test files.
10   src = fetchFromGitHub {
11     owner = "pwaller";
12     repo = "pyprof2calltree";
13     rev = "v" + version;
14     sha256 = "0akighssiswfhi5285rrj37am6flg3ip17c34bayq3r8yyk1iciy";
15   };
17   meta = with lib; {
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 ];
24   };