12 buildPythonPackage rec {
19 inherit pname version;
20 hash = "sha256-RX4JOoiBKJAyUaJmqMwWtLqT8/YzSz6/7ZLHRxp02Gc=";
25 # pygraphviz depends on graphviz executables and wc being in PATH
28 path = lib.makeBinPath [ graphviz coreutils ];
32 nativeBuildInputs = [ pkg-config ];
34 buildInputs = [ graphviz ];
36 checkInputs = [ pytest ];
40 pytest --pyargs pygraphviz
44 pythonImportsCheck = [ "pygraphviz" ];
47 description = "Python interface to Graphviz graph drawing package";
48 homepage = "https://github.com/pygraphviz/pygraphviz";
49 license = licenses.bsd3;
50 maintainers = with maintainers; [ matthiasbeyer dotlambda ];