guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 0809db9016f48dcbcf8b7a5f71dbb9d25fb6e362
Author: Kjartan Oli Agustsson <kjartan...@outlook.com>
AuthorDate: Wed Jun 18 02:21:57 2025 +0000

    gnu: python-pyfit-sne: Use pyproject-build-system.
    
    * gnu/packages/bioinformatics.scm (python-pyfit-sne): [build-system]: Use
    pyproject.
    [native-inputs]: Add python-setuptools and python-wheel.
    
    Change-Id: I8f62f2dc30d2bd182a791830bb835adf778d2ecf
    Signed-off-by: Sharlatan Hellseher <sharlata...@gmail.com>
---
 gnu/packages/bioinformatics.scm | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 80e5f24f8f..1cd275159b 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -21291,14 +21291,12 @@ Torrent.")
        (file-name (git-file-name name version))
        (sha256
         (base32 "0f3n7wcmxbnqiisgimhpa6p5chqpb1hj69i6rpg2hv2671i8nn68"))))
-    (build-system python-build-system)
-    (arguments '(#:tests? #false)) ; there are none
-    (propagated-inputs
-     (list python-numpy))
-    (inputs
-     (list fftw))
-    (native-inputs
-     (list python-cython))
+    (build-system pyproject-build-system)
+    (arguments
+     '(#:tests? #f)) ;there are none
+    (propagated-inputs (list python-numpy))
+    (inputs (list fftw))
+    (native-inputs (list python-cython python-setuptools python-wheel))
     (home-page "https://github.com/KlugerLab/pyFIt-SNE";)
     (synopsis "FFT-accelerated Interpolation-based t-SNE")
     (description

Reply via email to