guix-commits
[Top][All Lists]
Advanced

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

02/06: gnu: python-pybigwig: Update to 0.3.22.


From: guix-commits
Subject: 02/06: gnu: python-pybigwig: Update to 0.3.22.
Date: Sun, 14 May 2023 07:49:08 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 302e7b7820606de4cd7034ea367c2028a8fca4e2
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sun May 14 13:26:21 2023 +0200

    gnu: python-pybigwig: Update to 0.3.22.
    
    * gnu/packages/bioinformatics.scm (python-pybigwig): Update to 0.3.22.
    [source]: Simplify snippet.
    [arguments]: Explicitly disable tests; simplify 'link-with-libBigWig phase.
    [build-system]: Use pyproject-build-system.
---
 gnu/packages/bioinformatics.scm | 20 +++++++++-----------
 1 file changed, 9 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 86696d7c14..1e9abd3c63 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -3679,28 +3679,26 @@ files.")
 (define-public python-pybigwig
   (package
     (name "python-pybigwig")
-    (version "0.3.17")
+    (version "0.3.22")
     (source (origin
               (method url-fetch)
               (uri (pypi-uri "pyBigWig" version))
               (sha256
                (base32
-                "157x6v48y299zm382krf1dw08fdxg95im8lnabhp5vc94s04zxj1"))
+                "0hr25lkp26mk0fp7irdjdrdsd5lann9kyv0xq9npyyxxakvjci2x"))
               (modules '((guix build utils)))
               (snippet
-               '(begin
-                  ;; Delete bundled libBigWig sources
-                  (delete-file-recursively "libBigWig")
-                  #t))))
-    (build-system python-build-system)
+               ;; Delete bundled libBigWig sources
+               '(delete-file-recursively "libBigWig"))))
+    (build-system pyproject-build-system)
     (arguments
-     `(#:phases
+     '(#:tests? #false      ;only one test exists and it needs internet access
+       #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'link-with-libBigWig
-           (lambda* (#:key inputs #:allow-other-keys)
+           (lambda _
              (substitute* "setup.py"
-               (("libs=\\[") "libs=[\"BigWig\", "))
-             #t)))))
+               (("libs=\\[") "libs=[\"BigWig\", ")))))))
     (propagated-inputs
      (list python-numpy))
     (inputs



reply via email to

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