depot/third_party/nixpkgs/pkgs/development/python-modules/graph-tool/default.nix
Default email 889482aab3 Project import generated by Copybara.
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
2022-06-26 12:26:21 +02:00

73 lines
1.3 KiB
Nix

{ buildPythonPackage
, lib
, fetchurl
, autoreconfHook
, boost
, cairomm
, cgal
, expat
, gmp
, gobject-introspection
, gtk3
, matplotlib
, mpfr
, numpy
, pkg-config
, pycairo
, pygobject3
, python
, scipy
, sparsehash
}:
buildPythonPackage rec {
pname = "graph-tool";
format = "other";
version = "2.45";
src = fetchurl {
url = "https://downloads.skewed.de/graph-tool/graph-tool-${version}.tar.bz2";
hash = "sha256-+S2nrM/aArKXke/k8LPtkzKfJyMq9NOvwHySQh7Ghmg=";
};
configureFlags = [
"--with-python-module-path=$(out)/${python.sitePackages}"
"--with-boost-libdir=${boost}/lib"
"--with-expat=${expat}"
"--with-cgal=${cgal}"
"--enable-openmp"
];
enableParallelBuilding = true;
nativeBuildInputs = [
autoreconfHook
pkg-config
];
# https://git.skewed.de/count0/graph-tool/-/wikis/installation-instructions#manual-compilation
propagatedBuildInputs = [
boost
cairomm
cgal
expat
gmp
gobject-introspection
gtk3
matplotlib
mpfr
numpy
pycairo
pygobject3
scipy
sparsehash
];
meta = with lib; {
description = "Python module for manipulation and statistical analysis of graphs";
homepage = "https://graph-tool.skewed.de";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ ];
};
}