12 buildPythonPackage rec {
19 inherit pname version;
20 sha256 = "a7bec6609f37cf1e64898c59f075afd659106cf9356c5f387cecaa2e0cdb2304";
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 ];
39 pytest --pyargs pygraphviz
43 description = "Python interface to Graphviz graph drawing package";
44 homepage = "https://github.com/pygraphviz/pygraphviz";
45 license = licenses.bsd3;
46 maintainers = with maintainers; [ matthiasbeyer dotlambda ];