unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Alexandre Hannud Abdo <abdo@member.fsf.org>
To: 47966@debbugs.gnu.org
Subject: [bug#47966] [PATCH] gnu: Add python-graph-tool.
Date: Fri, 23 Apr 2021 08:17:52 +0200	[thread overview]
Message-ID: <dd1dccc9c61eb6612af35544b53eb4bdda6b52c3.camel@member.fsf.org> (raw)

* gnu/packages/graph.scm (python-graph-tool): New variable.
---
 gnu/packages/graph.scm | 62 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)

diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm
index d2e4c875a1..94125ebdba 100644
--- a/gnu/packages/graph.scm
+++ b/gnu/packages/graph.scm
@@ -6,6 +6,7 @@
 ;;; Copyright © 2019 Andreas Enge <andreas@enge.fr>
 ;;; Copyright © 2020 Alexander Krotov <krotov@iitp.ru>
 ;;; Copyright © 2020 Pierre Langlois <pierre.langlos@gmx.com>
+;;; Copyright © 2021 Alexandre Hannud Abdo <abdo@member.fsf.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -37,13 +38,18 @@
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages bioconductor)
   #:use-module (gnu packages bioinformatics)
+  #:use-module (gnu packages boost)
   #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages cran)
+  #:use-module (gnu packages datastructures)
   #:use-module (gnu packages gd)
+  #:use-module (gnu packages graphics)
   #:use-module (gnu packages graphviz)
+  #:use-module (gnu packages gtk)
   #:use-module (gnu packages maths)
   #:use-module (gnu packages multiprecision)
+  #:use-module (gnu packages ncurses)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-science)
@@ -510,3 +516,59 @@ MSCs need not be complicated to create or use.  Mscgen aims to provide a simple
 text language that is clear to create, edit and understand, which can also be
 transformed into common image formats for display or printing.")
     (license license:gpl2+)))
+
+(define-public python-graph-tool
+  (package
+    (name "python-graph-tool")
+    (version "2.37")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://downloads.skewed.de/graph-tool/graph-tool-"
+                    version
+                    ".tar.bz2"))
+              (sha256
+               (base32
+                "0w2i4d4zyk051zkykcg0ksngspajznwmp523hbsx50xnxc6jliyz"))))
+    (build-system gnu-build-system)
+    ;; (arguments '(#:configure-flags '("--disable-openmp")))
+    (arguments
+     `(#:configure-flags
+       (list (string-append "--with-boost="
+                            (assoc-ref %build-inputs "boost"))
+             (string-append "--with-python-module-path="
+                            (assoc-ref %outputs "out")
+                            "/lib/python"
+                            ((lambda (version)
+                               (substring version 0 (string-rindex version #\.)))
+                             ,(package-version
+                               (car (assoc-ref
+                                     (package-propagated-inputs this-package)
+                                     "python"))))
+                            "/site-packages/"))))
+    (native-inputs `(("pkg-config" ,pkg-config)
+                     ("gcc-10" ,gcc-10)
+                     ("ncurses" ,ncurses)))
+    (inputs `(("boost" ,boost)
+              ("expat" ,expat)
+              ("gmp" ,gmp)
+              ("cgal" ,cgal)
+              ("sparsehash" ,sparsehash)
+              ("gtk+" ,gtk+)
+              ("cairomm" ,cairomm)))
+    (propagated-inputs `(("python" ,python-wrapper)
+                         ("python-scipy" ,python-scipy)
+                         ("python-numpy" ,python-numpy)
+                         ("python-pycairo" ,python-pycairo)
+                         ("python-matplotlib" ,python-matplotlib)))
+    (synopsis "Efficient python module for analysis of graphs")
+    (description "Graph-tool is an efficient Python module for
+manipulation and statistical analysis of graphs (a.k.a. networks).
+Contrary to most other Python modules with similar functionality, the
+core data structures and algorithms are implemented in C++, making
+extensive use of template metaprogramming, based heavily on the Boost
+Graph Library.  This confers it a level of performance that is
+comparable (both in memory usage and computation time) to that of a
+pure C/C++ library.")
+    (home-page "https://graph-tool.skewed.de/")
+    (license license:lgpl3+)))





             reply	other threads:[~2021-04-23 13:35 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-23  6:17 Alexandre Hannud Abdo [this message]
2021-05-13 17:04 ` [bug#47966] [PATCH] gnu: Add python-graph-tool Marius Bakke
2021-05-14 20:47 ` Alexandre Hannud Abdo
2021-05-15 17:26   ` bug#47966: " Marius Bakke
2021-05-14 20:53 ` [bug#47966] " Alexandre Hannud Abdo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=dd1dccc9c61eb6612af35544b53eb4bdda6b52c3.camel@member.fsf.org \
    --to=abdo@member.fsf.org \
    --cc=47966@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).