guix_mirror_bot pushed a commit to branch master
in repository guix.

commit dcca59cf9fc4c21baac504011e0e5f14f15aa02a
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Jul 31 19:02:06 2025 +0200

    gnu: htseq: Switch to pyproject.
    
    * gnu/packages/bioinformatics.scm (htseq):
    [build-system]: Switch to pyproject-build-system.
    [arguments]: Remove uneeded field.
    [native-inputs]: Add python-setuptools, python-wheel.
    
    Change-Id: I5d9ccff56212413d76fa31f02efa5008dd709d97
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/bioinformatics.scm | 15 +++------------
 1 file changed, 3 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 8dffc86c00..122b9ec385 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -8748,18 +8748,7 @@ HMMs).")
               (sha256
                (base32
                 "1kbr4ydjjhizz6r5m3xd4f0wj7qnn8zs0vnzghhgaa0yhbya5r19"))))
-    (build-system python-build-system)
-    (arguments
-     (list
-      #:phases
-      '(modify-phases %standard-phases
-         ;; Avoid rebuilding the extension.  Everything is built during the
-         ;; 'install phase anyway.
-         (delete 'build)
-         (replace 'check
-           (lambda* (#:key tests? #:allow-other-keys)
-             (when tests?
-               (invoke "pytest" "-v")))))))
+    (build-system pyproject-build-system)
     (propagated-inputs
      (list python-matplotlib
            python-numpy
@@ -8769,6 +8758,8 @@ HMMs).")
            python-pandas
            python-pytest
            python-scipy
+           python-setuptools
+           python-wheel
            swig))
     (home-page "https://github.com/htseq";)
     (synopsis "Framework for analyzing high-throughput sequencing data")

Reply via email to