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

50 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, python, cairomm, sparsehash, pycairo, autoreconfHook,
pkgconfig, boost, expat, scipy, numpy, cgal, gmp, mpfr, lndir,
gobjectIntrospection, pygobject3, gtk3, matplotlib }:
2015-01-29 13:24:37 +00:00
stdenv.mkDerivation rec {
version = "2.16";
2015-01-29 13:24:37 +00: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 15:44:18 +00:00
maintainer = [ stdenv.lib.maintainers.joelmo ];
2015-01-29 13:24:37 +00:00
};
src = fetchurl {
url = "https://downloads.skewed.de/graph-tool/graph-tool-${version}.tar.bz2";
sha256 = "03b1pmh2gvsgyq491gvskx8fwgqy9k942faymdnhwpbbbfhx911p";
2015-01-29 13:24:37 +00:00
};
configureFlags = [
"--with-python-module-path=$(out)/${python.sitePackages}"
"--enable-openmp"
];
2015-01-29 13:24:37 +00:00
buildInputs = [ pkgconfig autoreconfHook ];
2015-01-29 13:24:37 +00:00
propagatedBuildInputs = [
boost
cgal
expat
gmp
mpfr
python
scipy
# optional
sparsehash
# drawing
cairomm
gobjectIntrospection
gtk3
pycairo
matplotlib
pygobject3
];
2015-01-29 13:24:37 +00:00
enableParallelBuilding = false;
}