1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, pyparsing
5, graphviz
6}:
7
8buildPythonPackage rec {
9 pname = "pydotplus";
10 version = "2.0.2";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "1i05cnk3yh722fdyaq0asr7z9xf7v7ikbmnpxa8j6pdqx6g5xs4i";
15 };
16
17 propagatedBuildInputs = [
18 pyparsing
19 graphviz
20 ];
21
22 meta = with stdenv.lib; {
23 homepage = https://github.com/erocarrera/pydot;
24 description = "An improved version of the old pydot project that provides a Python Interface to Graphviz’s Dot language";
25 license = licenses.mit;
26 maintainers = with maintainers; [ ashgillman ];
27 };
28}