Merge pull request #83342 from r-ryantm/auto-update/python2.7-graph-tool

python27Packages.graph-tool: 2.29 -> 2.30
This commit is contained in:
Benjamin Hipple 2020-03-26 20:47:50 -04:00 committed by GitHub
commit ce9d22b6bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 , pkg-config, boost, expat, scipy, cgal, gmp, mpfr
, gobject-introspection, pygobject3, gtk3, matplotlib, ncurses , gobject-introspection, pygobject3, gtk3, matplotlib, ncurses
, buildPythonPackage , buildPythonPackage
@ -10,18 +10,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "graph-tool"; pname = "graph-tool";
format = "other"; format = "other";
version = "2.29"; version = "2.30";
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 ];
};
src = fetchurl { src = fetchurl {
url = "https://downloads.skewed.de/graph-tool/graph-tool-${version}.tar.bz2"; url = "https://downloads.skewed.de/graph-tool/graph-tool-${version}.tar.bz2";
sha256 = "0ykzcnqc5bhqb4xlf9ahpp807vj5868xdrmcj6fggqnnpqv4633c"; sha256 = "1gy8xhwfms0psdji7vzqjbzj3l0k743aw20db27zxyq89cvz6g42";
}; };
configureFlags = [ configureFlags = [
@ -55,4 +48,11 @@ buildPythonPackage rec {
]; ];
enableParallelBuilding = false; 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 ];
};
} }