graph-tool: 2.2.42 -> 2.12

Closes #12647

Signed-off-by: Robin Gloster <mail@glob.in>

authored by

Joel Moberg and committed by
Robin Gloster
6d920292 fc71277f

+7 -5
+7 -5
pkgs/development/python-modules/graph-tool/2.x.x.nix
··· 1 { stdenv, fetchurl, python, cairomm, sparsehash, pycairo, automake, m4, 2 pkgconfig, boost, expat, scipy, numpy, cgal, gmp, mpfr, lndir, makeWrapper, 3 - gobjectIntrospection, pygobject3, gtk3, matplotlib }: 4 5 stdenv.mkDerivation rec { 6 - version = "2.2.42"; 7 name = "${python.libPrefix}-graph-tool-${version}"; 8 9 meta = with stdenv.lib; { ··· 15 }; 16 17 src = fetchurl { 18 - url = "http://downloads.skewed.de/graph-tool/graph-tool-${version}.tar.bz2"; 19 - sha256 = "124qmd0mgam7hm87gscp3836ymhhwwnlfm2c5pzpml06da1w0xg9"; 20 }; 21 22 preConfigure = '' 23 configureFlags="--with-python-module-path=$out/${python.sitePackages} --enable-openmp" 24 ''; 25 26 - buildInputs = [ automake m4 pkgconfig makeWrapper ]; 27 28 propagatedBuildInputs = [ 29 boost
··· 1 { stdenv, fetchurl, python, cairomm, sparsehash, pycairo, automake, m4, 2 pkgconfig, boost, expat, scipy, numpy, cgal, gmp, mpfr, lndir, makeWrapper, 3 + gobjectIntrospection, pygobject3, gtk3, matplotlib, autoconf, libtool }: 4 5 stdenv.mkDerivation rec { 6 + version = "2.12"; 7 name = "${python.libPrefix}-graph-tool-${version}"; 8 9 meta = with stdenv.lib; { ··· 15 }; 16 17 src = fetchurl { 18 + url = "https://github.com/count0/graph-tool/archive/release-${version}.tar.gz"; 19 + sha256 = "12w58djyx6nn00wixqnxnxby9ksabhzdkkvynl8b89parfvfbpwl"; 20 }; 21 22 preConfigure = '' 23 + patchShebangs autogen.sh 24 + ./autogen.sh 25 configureFlags="--with-python-module-path=$out/${python.sitePackages} --enable-openmp" 26 ''; 27 28 + buildInputs = [ automake m4 pkgconfig makeWrapper autoconf libtool ]; 29 30 propagatedBuildInputs = [ 31 boost