Add graph-tool

This commit is contained in:
Joel Moberg 2015-01-29 14:24:37 +01:00
parent d72047882e
commit 7b33a74235
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ stdenv, fetchurl, python, cairomm, sparsehash, pycairo, automake, m4, pkgconfig, boost, expat, scipy, numpy, cgal, gmp, mpfr, lndir, makeWrapper }:
stdenv.mkDerivation rec {
version = "2.2.36";
name = "${python.libPrefix}-graph-tool-${version}";
meta = with stdenv.lib; {
description = "Python module for manipulation and statistical analysis of graphs";
homepage = http://graph-tool.skewed.de/;
license = licenses.gpl3;
platforms = platforms.all;
};
src = fetchurl {
url = "http://downloads.skewed.de/graph-tool/graph-tool-${version}.tar.bz2";
sha256 = "0wp81dp2kd4bzsl6f3gxjmf11hiqr7rz7g0wa1j38fc0chq31q71";
};
preConfigure = ''
configureFlags="--with-python-module-path=$out/${python.sitePackages}"
'';
buildInputs = [ python cairomm pycairo sparsehash automake m4 pkgconfig makeWrapper boost expat scipy numpy cgal lndir gmp mpfr ];
propagatedBuildInputs = [ numpy ];
enableParallelBuilding = false;
}

View File

@ -4256,6 +4256,10 @@ let
};
};
# py3k disabled, see https://travis-ci.org/NixOS/nixpkgs/builds/48759067
graph-tool = if isPy3k then throw "graph-tool in Nix doesn't support py3k yet"
else callPackage ../development/python-modules/graph-tool/2.x.x.nix { };
grappelli_safe = buildPythonPackage rec {
version = "0.3.13";
name = "grappelli_safe-${version}";