1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytest
5}:
6
7buildPythonPackage rec {
8 pname = "pycallgraph";
9 version = "1.0.1";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "0w8yr43scnckqcv5nbyd2dq4kpv74ai856lsdsf8iniik07jn9mi";
14 };
15
16 buildInputs = [ pytest ];
17
18 # Tests do not work due to this bug: https://github.com/gak/pycallgraph/issues/118
19 doCheck = false;
20
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 };
27
28}