2018-01-16 03:29:42 +00:00
|
|
|
|
{ stdenv
|
|
|
|
|
, buildPythonPackage
|
|
|
|
|
, fetchPypi
|
|
|
|
|
, pyparsing
|
|
|
|
|
, graphviz
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "pydotplus";
|
|
|
|
|
version = "2.0.2";
|
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
|
|
|
|
sha256 = "1i05cnk3yh722fdyaq0asr7z9xf7v7ikbmnpxa8j6pdqx6g5xs4i";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
|
pyparsing
|
|
|
|
|
graphviz
|
|
|
|
|
];
|
|
|
|
|
|
2018-01-16 09:31:37 +00:00
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
homepage = https://github.com/erocarrera/pydot;
|
2018-01-16 03:29:42 +00:00
|
|
|
|
description = "An improved version of the old pydot project that provides a Python Interface to Graphviz’s Dot language";
|
2018-01-16 09:31:37 +00:00
|
|
|
|
license = licenses.mit;
|
|
|
|
|
maintainers = with maintainers; [ ashgillman ];
|
2018-01-16 03:29:42 +00:00
|
|
|
|
};
|
|
|
|
|
}
|