14 buildPythonPackage rec {
19 disabled = pythonOlder "3.7" || isPyPy;
22 inherit pname version;
23 hash = "sha256-/pbHQUe7yq6GZbOW5TiL3MMZfe67pOY4HwUgLuW0U6c=";
28 src = ./hardcode-graphviz-path.patch;
29 graphviz = graphvizPkgs;
37 optional-dependencies = {
38 ipython = [ graphviz ];
41 pythonImportsCheck = [ "objgraph" ];
45 ${python.interpreter} tests.py
50 description = "Draws Python object reference graphs with graphviz";
51 homepage = "https://mg.pov.lt/objgraph/";
52 changelog = "https://github.com/mgedmin/objgraph/blob/${version}/CHANGES.rst";
53 license = licenses.mit;
54 maintainers = with maintainers; [ dotlambda ];