about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2020-03-26 20:47:50 -0400
committerGitHub <noreply@github.com>2020-03-26 20:47:50 -0400
commitce9d22b6bf88fc832a2e45a720c546a2f30d4a38 (patch)
tree361099c98ca9b7aea82c7d8eb60c35f66f914cff /pkgs
parentd107e3b441db97adafc1f2d79ac0d38ad0a72435 (diff)
parent9c5f4d973c57d62e93bc31be394092469f870260 (diff)
downloadnixlib-ce9d22b6bf88fc832a2e45a720c546a2f30d4a38.tar
nixlib-ce9d22b6bf88fc832a2e45a720c546a2f30d4a38.tar.gz
nixlib-ce9d22b6bf88fc832a2e45a720c546a2f30d4a38.tar.bz2
nixlib-ce9d22b6bf88fc832a2e45a720c546a2f30d4a38.tar.lz
nixlib-ce9d22b6bf88fc832a2e45a720c546a2f30d4a38.tar.xz
nixlib-ce9d22b6bf88fc832a2e45a720c546a2f30d4a38.tar.zst
nixlib-ce9d22b6bf88fc832a2e45a720c546a2f30d4a38.zip
Merge pull request #83342 from r-ryantm/auto-update/python2.7-graph-tool
python27Packages.graph-tool: 2.29 -> 2.30
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/graph-tool/2.x.x.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/graph-tool/2.x.x.nix b/pkgs/development/python-modules/graph-tool/2.x.x.nix
index e069c8f8c7b6..88e0902529c0 100644
--- a/pkgs/development/python-modules/graph-tool/2.x.x.nix
+++ b/pkgs/development/python-modules/graph-tool/2.x.x.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, python, cairomm, sparsehash, pycairo, autoreconfHook
+{ fetchurl, python, cairomm, sparsehash, pycairo, autoreconfHook
 , pkg-config, boost, expat, scipy, cgal, gmp, mpfr
 , gobject-introspection, pygobject3, gtk3, matplotlib, ncurses
 , buildPythonPackage
@@ -10,18 +10,11 @@
 buildPythonPackage rec {
   pname = "graph-tool";
   format = "other";
-  version = "2.29";
-
-  meta = with stdenv.lib; {
-    description = "Python module for manipulation and statistical analysis of graphs";
-    homepage    = https://graph-tool.skewed.de/;
-    license     = licenses.gpl3;
-    maintainers = [ stdenv.lib.maintainers.joelmo ];
-  };
+  version = "2.30";
 
   src = fetchurl {
     url = "https://downloads.skewed.de/graph-tool/graph-tool-${version}.tar.bz2";
-    sha256 = "0ykzcnqc5bhqb4xlf9ahpp807vj5868xdrmcj6fggqnnpqv4633c";
+    sha256 = "1gy8xhwfms0psdji7vzqjbzj3l0k743aw20db27zxyq89cvz6g42";
   };
 
   configureFlags = [
@@ -55,4 +48,11 @@ buildPythonPackage rec {
   ];
 
   enableParallelBuilding = false;
+
+  meta = with lib; {
+    description = "Python module for manipulation and statistical analysis of graphs";
+    homepage    = "https://graph-tool.skewed.de/";
+    license     = licenses.gpl3;
+    maintainers = [ maintainers.joelmo ];
+  };
 }