Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pycallgraph / default.nix
blobaf9f18aad2c6121cb5e47d9f18920fa64bc0f65d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytest
5 }:
7 buildPythonPackage rec {
8   pname = "pycallgraph";
9   version = "1.0.1";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0w8yr43scnckqcv5nbyd2dq4kpv74ai856lsdsf8iniik07jn9mi";
14   };
16   buildInputs = [ pytest ];
18   # Tests do not work due to this bug: https://github.com/gak/pycallgraph/issues/118
19   doCheck = false;
21   meta = with lib; {
22     homepage = "http://pycallgraph.slowchop.com";
23     description = "Call graph visualizations for Python applications";
24     maintainers = with maintainers; [ auntie ];
25     license = licenses.gpl2;
26   };