b189247ba0
Uses the HTTPS url for cases where the existing URL has a permanent redirect. For each domain, at least one fixed derivation URL was downloaded to test the domain is properly serving downloads. Also fixes jbake source URL, which was broken.
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ stdenv, fetchurl, python, cairomm, sparsehash, pycairo, autoreconfHook,
|
|
pkgconfig, boost, expat, scipy, numpy, cgal, gmp, mpfr, lndir,
|
|
gobjectIntrospection, pygobject3, gtk3, matplotlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.16";
|
|
name = "${python.libPrefix}-graph-tool-${version}";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Python module for manipulation and statistical analysis of graphs";
|
|
homepage = https://graph-tool.skewed.de/;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.all;
|
|
maintainers = [ stdenv.lib.maintainers.joelmo ];
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "https://downloads.skewed.de/graph-tool/graph-tool-${version}.tar.bz2";
|
|
sha256 = "03b1pmh2gvsgyq491gvskx8fwgqy9k942faymdnhwpbbbfhx911p";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--with-python-module-path=$(out)/${python.sitePackages}"
|
|
"--enable-openmp"
|
|
];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ ];
|
|
|
|
propagatedBuildInputs = [
|
|
boost
|
|
cgal
|
|
expat
|
|
gmp
|
|
mpfr
|
|
python
|
|
scipy
|
|
# optional
|
|
sparsehash
|
|
# drawing
|
|
cairomm
|
|
gobjectIntrospection
|
|
gtk3
|
|
pycairo
|
|
matplotlib
|
|
pygobject3
|
|
];
|
|
|
|
enableParallelBuilding = false;
|
|
}
|