guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: python-hicexplorer: Fix build.


From: guix-commits
Subject: 02/02: gnu: python-hicexplorer: Fix build.
Date: Thu, 4 Jan 2024 07:44:46 -0500 (EST)

mothacehe pushed a commit to branch master
in repository guix.

commit 4f53dff911e80573bc77f8c76e4f101d6c3c7f46
Author: Troy Figiel <troy@troyfigiel.com>
AuthorDate: Sat Dec 30 20:36:17 2023 +0100

    gnu: python-hicexplorer: Fix build.
    
    * gnu/packages/bioinformatics.scm (python-hicexplorer)[snippet]: Remove
    catchall pattern of patch version numbers in setup.py.
---
 gnu/packages/bioinformatics.scm | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 41cac296fe..2ceb0190b6 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -16790,7 +16790,16 @@ the HiCExplorer and pyGenomeTracks packages.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "1yavgxry38g326z10bclvdf8glmma05fxj5m73h15m1r2l9xmw3v"))))
+         "1yavgxry38g326z10bclvdf8glmma05fxj5m73h15m1r2l9xmw3v"))
+       (modules '((guix build utils)))
+       ;; setup.py is malformed. The requirements are defined using a catchall
+       ;; pattern for the patch version number. This has been fixed in version
+       ;; 3.7.3, but we cannot upgrade to this version yet, since some Guix
+       ;; packages are not new enough. (See upstream commit
+       ;; 4845c715ec7b105e938d0c2426e27d0181690bfe for the fix).
+       (snippet '(substitute* "setup.py"
+                   (("\\.\\*")
+                    "")))))
     (build-system pyproject-build-system)
     (arguments
      (list



reply via email to

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