guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/08: gnu: python-louvain-0.6: Update to 0.7.1.


From: guix-commits
Subject: 04/08: gnu: python-louvain-0.6: Update to 0.7.1.
Date: Mon, 31 Jan 2022 10:09:26 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit cd4bf5ecb46ac73e88076de036e24df1280215c9
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Jan 31 15:27:54 2022 +0100

    gnu: python-louvain-0.6: Update to 0.7.1.
    
    * gnu/packages/graph.scm (python-louvain-0.6): Update to 0.7.1.
    [arguments]: Add build phases 'find-igraph and 'pretend-version.
    [native-inputs]: Add python-setuptools-scm and python-wheel.
    Rename this variable...
    (python-louvain-0.7): ...to this, naturally.
    * gnu/packages/bioinformatics.scm (python-scanpy)[propagated-inputs]: Update
    reference to python-louvain-0.6.
---
 gnu/packages/bioinformatics.scm |  2 +-
 gnu/packages/graph.scm          | 29 +++++++++++++++++++++++++----
 2 files changed, 26 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 4aa7fb7585..9eefc64184 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -12027,7 +12027,7 @@ implementation differs in these ways:
            python-igraph
            python-joblib
            python-legacy-api-wrap
-           python-louvain-0.6
+           python-louvain-0.7
            python-matplotlib
            python-natsort
            python-networkx
diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm
index 79ea6680e4..4b46904318 100644
--- a/gnu/packages/graph.scm
+++ b/gnu/packages/graph.scm
@@ -55,6 +55,7 @@
   #:use-module (gnu packages ncurses)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python)
+  #:use-module (gnu packages python-build)
   #:use-module (gnu packages python-science)
   #:use-module (gnu packages python-web)
   #:use-module (gnu packages python-xyz)
@@ -298,10 +299,10 @@ subplots, multiple-axes, polar charts, and bubble 
charts.")
 algorithm for community detection in large networks.")
     (license license:bsd-3)))
 
-(define-public python-louvain-0.6
+(define-public python-louvain-0.7
   (package
     (name "python-louvain")
-    (version "0.6.1")
+    (version "0.7.1")
     ;; The tarball on Pypi does not include the tests.
     (source (origin
               (method git-fetch)
@@ -311,14 +312,34 @@ algorithm for community detection in large networks.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0w31537sifkf65sck1iaip5i6d8g64pa3wdwad83d6p9jwkck57k"))))
+                "1g6b5c2jgwagnhnqh859g61h7x6a81d8hm3g6mkin6kzwafww3g2"))))
     (build-system python-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'build 'pretend-version
+            ;; The version string is usually derived via setuptools-scm, but
+            ;; without the git metadata available this fails.
+            (lambda _
+              (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)))
+          (add-before 'build 'find-igraph
+            (lambda* (#:key inputs #:allow-other-keys)
+              (setenv "IGRAPH_EXTRA_INCLUDE_PATH"
+                      (string-append (assoc-ref inputs "igraph")
+                                     "/include/igraph:"
+                                     (getenv "C_INCLUDE_PATH")))
+              (setenv "IGRAPH_EXTRA_LIBRARY_PATH"
+                      (getenv "LIBRARY_PATH")))))))
     (propagated-inputs
      (list python-ddt python-igraph))
     (inputs
      (list igraph))
     (native-inputs
-     (list pkg-config python-pytest))
+     (list pkg-config
+           python-pytest
+           python-setuptools-scm
+           python-wheel))
     (home-page "https://github.com/vtraag/louvain-igraph";)
     (synopsis "Algorithm for methods of community detection in large networks")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]