summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2015-12-26 23:23:04 +0100
committerRobin Gloster <mail@glob.in>2016-01-17 18:11:37 +0000
commitae5ef2b00955a8b8cbcc93a6682a8275c4d5e52c (patch)
tree246140334b0ea60e855ccd1759f218b271e23759
parent656acf3719e1d6d910761c4b1e050ac0fae46629 (diff)
downloadnixpkgs-ae5ef2b00955a8b8cbcc93a6682a8275c4d5e52c.tar
nixpkgs-ae5ef2b00955a8b8cbcc93a6682a8275c4d5e52c.tar.gz
nixpkgs-ae5ef2b00955a8b8cbcc93a6682a8275c4d5e52c.tar.bz2
nixpkgs-ae5ef2b00955a8b8cbcc93a6682a8275c4d5e52c.tar.lz
nixpkgs-ae5ef2b00955a8b8cbcc93a6682a8275c4d5e52c.tar.xz
nixpkgs-ae5ef2b00955a8b8cbcc93a6682a8275c4d5e52c.tar.zst
nixpkgs-ae5ef2b00955a8b8cbcc93a6682a8275c4d5e52c.zip
pygraphviz: init at 1.3
changes by @globin:
1.2 -> 1.3
correct license information

Signed-off-by: Robin Gloster <mail@glob.in>
-rw-r--r--pkgs/top-level/python-packages.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index e93373fe45a..48c3d3d148e 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -11228,6 +11228,25 @@ in modules // {
     };
   };
 
+  pygraphviz = buildPythonPackage rec {
+    version = "1.3";
+    name = "pygraphviz-${version}";
+
+    src = pkgs.fetchurl {
+      url = "https://github.com/pygraphviz/pygraphviz/archive/${name}.tar.gz";
+      sha256 = "1fhn123hy4qj0zmmmbx0q0r4hwikay13yirsp74niiw5d52y7ib8";
+    };
+
+    propagatedBuildInputs = [ pkgs.graphviz pkgs.pkgconfig ];
+
+    meta = {
+      description = "Python interface to Graphviz graph drawing package";
+      homepage = https://github.com/pygraphviz/pygraphviz;
+      license = licenses.bsd3;
+      maintainers = with maintainers; [ matthiasbeyer ];
+    };
+  };
+
   pymysql = buildPythonPackage rec {
     name = "pymysql-${version}";
     version = "0.6.6";