guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 44772b3bc824aeebc3da79523969d2217c65faa7
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Oct 30 11:30:58 2025 +0000

    gnu: idr: Switch to pyproject.
    
    * gnu/packages/bioinformatics.scm (idr)[build-system]: Switch to
    pyproject-build-system.
    [native-inputs]: Add python-setuptools.
    
    Change-Id: Ib6811a399b4c531f119bcef23b3216ff70c2d5eb
---
 gnu/packages/bioinformatics.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 4081d78abc..23644570d3 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -9725,7 +9725,7 @@ data.  It also provides the @command{bgzip}, 
@command{htsfile}, and
               ;; Delete generated C code.
               (snippet
                '(begin (delete-file "idr/inv_cdf.c") #t))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
     ;; There is only one test ("test_inv_cdf.py") and it tests features that
     ;; are no longer part of this package.  It also asserts False, which
     ;; causes the tests to always fail.
@@ -9733,7 +9733,8 @@ data.  It also provides the @command{bgzip}, 
@command{htsfile}, and
     (propagated-inputs
      (list python-scipy python-sympy python-numpy python-matplotlib))
     (native-inputs
-     (list python-cython))
+     (list python-cython
+           python-setuptools))
     (home-page "https://github.com/nboley/idr";)
     (synopsis "Tool to measure the irreproducible discovery rate (IDR)")
     (description

Reply via email to