2016-01-30 12:27:16 -08:00
|
|
|
{ stdenv, fetchurl, python, cairomm, sparsehash, pycairo, autoreconfHook,
|
2018-07-20 17:44:44 -07:00
|
|
|
pkgconfig, boost, expat, scipy, cgal, gmp, mpfr,
|
2018-12-02 03:41:15 -08:00
|
|
|
gobject-introspection, pygobject3, gtk3, matplotlib, ncurses,
|
2018-02-12 12:33:14 -08:00
|
|
|
buildPythonPackage }:
|
2015-01-29 05:24:37 -08:00
|
|
|
|
2018-02-12 12:33:14 -08:00
|
|
|
buildPythonPackage rec {
|
2018-06-23 06:27:58 -07:00
|
|
|
pname = "graph-tool";
|
2018-02-12 12:33:14 -08:00
|
|
|
format = "other";
|
2018-02-11 05:15:28 -08:00
|
|
|
version = "2.26";
|
2015-01-29 05:24:37 -08:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python module for manipulation and statistical analysis of graphs";
|
2018-03-24 22:04:25 -07:00
|
|
|
homepage = https://graph-tool.skewed.de/;
|
2015-01-29 05:24:37 -08:00
|
|
|
license = licenses.gpl3;
|
2017-12-05 14:20:11 -08:00
|
|
|
maintainers = [ stdenv.lib.maintainers.joelmo ];
|
2015-01-29 05:24:37 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-25 03:37:18 -07:00
|
|
|
url = "https://downloads.skewed.de/graph-tool/graph-tool-${version}.tar.bz2";
|
2018-02-11 05:15:28 -08:00
|
|
|
sha256 = "0w7pd2h8ayr88kjl82c8fdshnk6f3xslc77gy7ma09zkbvf76qnz";
|
2015-01-29 05:24:37 -08:00
|
|
|
};
|
|
|
|
|
2016-01-30 12:27:16 -08:00
|
|
|
configureFlags = [
|
|
|
|
"--with-python-module-path=$(out)/${python.sitePackages}"
|
2018-02-11 05:15:28 -08:00
|
|
|
"--with-boost-libdir=${boost}/lib"
|
|
|
|
"--with-expat=${expat}"
|
|
|
|
"--with-cgal=${cgal}"
|
2016-01-30 12:27:16 -08:00
|
|
|
"--enable-openmp"
|
|
|
|
];
|
2015-01-29 05:24:37 -08:00
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2018-02-11 05:15:28 -08:00
|
|
|
buildInputs = [ ncurses ];
|
2015-01-29 05:24:37 -08:00
|
|
|
|
2015-03-16 12:24:13 -07:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
boost
|
|
|
|
cgal
|
|
|
|
expat
|
|
|
|
gmp
|
|
|
|
mpfr
|
|
|
|
python
|
|
|
|
scipy
|
|
|
|
# optional
|
|
|
|
sparsehash
|
|
|
|
# drawing
|
|
|
|
cairomm
|
2018-12-02 03:41:15 -08:00
|
|
|
gobject-introspection
|
2015-03-16 12:24:13 -07:00
|
|
|
gtk3
|
|
|
|
pycairo
|
|
|
|
matplotlib
|
|
|
|
pygobject3
|
|
|
|
];
|
2015-01-29 05:24:37 -08:00
|
|
|
|
|
|
|
enableParallelBuilding = false;
|
|
|
|
}
|