mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
pythonPackages.graphviz: init at 0.5.2
This commit is contained in:
parent
e60805061b
commit
2198a7c747
1 changed files with 18 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue