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

59 lines
1.3 KiB
Nix
Raw Normal View History

{ fetchurl, python, cairomm, sparsehash, pycairo, autoreconfHook
, pkg-config, boost, expat, scipy, cgal, gmp, mpfr
, gobject-introspection, pygobject3, gtk3, matplotlib, ncurses
, buildPythonPackage
, fetchpatch
, pythonAtLeast
, lib
}:
2015-01-29 14:24:37 +01:00
buildPythonPackage rec {
pname = "graph-tool";
format = "other";
version = "2.32";
2015-01-29 14:24:37 +01:00
src = fetchurl {
url = "https://downloads.skewed.de/graph-tool/graph-tool-${version}.tar.bz2";
sha256 = "0jir6fhi09lf8xf56dcsdk2knx32vq8wrzh0d0zdp22n7baavq70";
2015-01-29 14:24:37 +01:00
};
configureFlags = [
"--with-python-module-path=$(out)/${python.sitePackages}"
"--with-boost-libdir=${boost}/lib"
"--with-expat=${expat}"
"--with-cgal=${cgal}"
"--enable-openmp"
];
2015-01-29 14:24:37 +01:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ ncurses ];
2015-01-29 14:24:37 +01:00
propagatedBuildInputs = [
boost
cgal
expat
gmp
mpfr
python
scipy
# optional
sparsehash
# drawing
cairomm
gobject-introspection
gtk3
pycairo
matplotlib
pygobject3
];
2015-01-29 14:24:37 +01:00
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 ];
};
2015-01-29 14:24:37 +01:00
}