pythonPackages.graphviz: init at 0.5.2

This commit is contained in:
Dmitry Kalinkin 2017-02-22 18:36:25 -05:00
parent e60805061b
commit 2198a7c747
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333

View file

@ -15376,6 +15376,24 @@ in {
};
};
graphviz = buildPythonPackage rec {
name = "graphviz-${version}";
version = "0.5.2";
src = pkgs.fetchurl {
url = "mirror://pypi/g/graphviz/${name}.zip";
sha256 = "0jh31nlm0qbxwylhdkwnb69pcjlc5z03fcfbs0gvgzp3hfrngsk0";
};
propagatedBuildInputs = [ pkgs.graphviz ];
meta = {
description = "Simple Python interface for Graphviz";
homepage = https://github.com/xflr6/graphviz;
license = licenses.mit;
};
};
pygraphviz = buildPythonPackage rec {
name = "pygraphviz-${version}";
version = "1.4rc1";