nixpkgs/pkgs/development/python-modules/graph-tool/2.x.x.nix

51 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, python, cairomm, sparsehash, pycairo, automake, m4,
pkgconfig, boost, expat, scipy, numpy, cgal, gmp, mpfr, lndir, makeWrapper,
gobjectIntrospection, pygobject3, gtk3, matplotlib, autoconf, libtool }:
2015-01-29 14:24:37 +01:00
stdenv.mkDerivation rec {
version = "2.12";
2015-01-29 14:24:37 +01:00
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;
2015-04-01 17:44:18 +02:00
maintainer = [ stdenv.lib.maintainers.joelmo ];
2015-01-29 14:24:37 +01:00
};
src = fetchurl {
url = "https://github.com/count0/graph-tool/archive/release-${version}.tar.gz";
sha256 = "12w58djyx6nn00wixqnxnxby9ksabhzdkkvynl8b89parfvfbpwl";
2015-01-29 14:24:37 +01:00
};
preConfigure = ''
patchShebangs autogen.sh
./autogen.sh
2015-05-21 16:43:07 +02:00
configureFlags="--with-python-module-path=$out/${python.sitePackages} --enable-openmp"
2015-01-29 14:24:37 +01:00
'';
buildInputs = [ automake m4 pkgconfig makeWrapper autoconf libtool ];
2015-01-29 14:24:37 +01:00
propagatedBuildInputs = [
boost
cgal
expat
gmp
mpfr
python
scipy
# optional
sparsehash
# drawing
cairomm
gobjectIntrospection
gtk3
pycairo
matplotlib
pygobject3
];
2015-01-29 14:24:37 +01:00
enableParallelBuilding = false;
}