Merge pull request #25027 from armijnhemel/pydot

pydot: 1.0.2 -> 1.2.3
This commit is contained in:
Michael Raskin 2017-05-01 13:26:45 +02:00 committed by GitHub
commit 8295ecfa79

View File

@ -19918,16 +19918,16 @@ in {
});
pydot = buildPythonPackage rec {
name = "pydot-1.0.2";
name = "pydot-1.2.3";
disabled = isPy3k;
src = pkgs.fetchurl {
url = "mirror://pypi/p/pydot/${name}.tar.gz";
sha256 = "80ea01a7ba75671a3b7890375be0ad8d5321b07bfb6f572192c31409062b59f3";
sha256 = "edb5d3f249f97fbd9c4bb16959e61bc32ecf40eee1a9f6d27abe8d01c0a73502";
};
propagatedBuildInputs = with self; [pyparsing pkgs.graphviz];
meta = {
homepage = http://code.google.com/p/pydot/;
homepage = https://github.com/erocarrera/pydot;
description = "Allows to easily create both directed and non directed graphs from Python";
};
};