nixpkgs/pkgs/development/python-modules/graph-tool/default.nix
Martin Weinelt ea66d03135
python3Packages.graph-tool: 2.43 -> 2.45
- Enable parallel build or else this monstrous build takes hours.
- Remove the maintainer who hasn't contributed to nixpkgs since 2016.
- Update dependencies
2022-06-06 11:46:26 -07:00

74 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; [ ];
};
}