summary refs log tree commit diff
path: root/pkgs/development/python-modules/graph-tool
diff options
context:
space:
mode:
authorJoel Moberg <joel.moberg@gmail.com>2015-01-29 14:24:37 +0100
committerJoel Moberg <joel.moberg@gmail.com>2015-01-30 13:13:02 +0100
commit7b33a742357ee16547469040fc62d3156dc1077e (patch)
tree39be585ff3bc5fe622768e9986a8cc47eeb83c0f /pkgs/development/python-modules/graph-tool
parentd72047882e5bbf852d0310c12ac315be07356dee (diff)
downloadnixpkgs-7b33a742357ee16547469040fc62d3156dc1077e.tar
nixpkgs-7b33a742357ee16547469040fc62d3156dc1077e.tar.gz
nixpkgs-7b33a742357ee16547469040fc62d3156dc1077e.tar.bz2
nixpkgs-7b33a742357ee16547469040fc62d3156dc1077e.tar.lz
nixpkgs-7b33a742357ee16547469040fc62d3156dc1077e.tar.xz
nixpkgs-7b33a742357ee16547469040fc62d3156dc1077e.tar.zst
nixpkgs-7b33a742357ee16547469040fc62d3156dc1077e.zip
Add graph-tool
Diffstat (limited to 'pkgs/development/python-modules/graph-tool')
-rw-r--r--pkgs/development/python-modules/graph-tool/2.x.x.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/graph-tool/2.x.x.nix b/pkgs/development/python-modules/graph-tool/2.x.x.nix
new file mode 100644
index 00000000000..835b4f6514a
--- /dev/null
+++ b/pkgs/development/python-modules/graph-tool/2.x.x.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl, python, cairomm, sparsehash, pycairo, automake, m4, pkgconfig, boost, expat, scipy, numpy, cgal, gmp, mpfr, lndir, makeWrapper }:
+
+stdenv.mkDerivation rec {
+  version = "2.2.36";
+  name = "${python.libPrefix}-graph-tool-${version}";
+
+  meta = with stdenv.lib; {
+    description = "Python module for manipulation and statistical analysis of graphs";
+    homepage    = http://graph-tool.skewed.de/;
+    license     = licenses.gpl3;
+    platforms   = platforms.all;
+  };
+
+  src = fetchurl {
+    url = "http://downloads.skewed.de/graph-tool/graph-tool-${version}.tar.bz2";
+    sha256 = "0wp81dp2kd4bzsl6f3gxjmf11hiqr7rz7g0wa1j38fc0chq31q71";
+  };
+
+  preConfigure = ''
+    configureFlags="--with-python-module-path=$out/${python.sitePackages}"
+  '';
+
+  buildInputs = [ python cairomm pycairo sparsehash automake m4 pkgconfig makeWrapper boost expat scipy numpy cgal lndir gmp mpfr ];
+
+  propagatedBuildInputs = [ numpy ];
+
+  enableParallelBuilding = false;
+}