python27Packages.graph-tool: 2.29 -> 2.30

This commit is contained in:
R. RyanTM 2020-03-25 07:16:04 +00:00 committed by Benjamin Hipple
parent ede6944f4f
commit 9c5f4d973c

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 ];
};
} }