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

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