diff options
| author | Kjartan Oli Agustsson <kjartanoli@outlook.com> | 2025-06-18 02:21:57 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-22 12:54:09 +0100 |
| commit | 0809db9016f48dcbcf8b7a5f71dbb9d25fb6e362 (patch) | |
| tree | eab87f6f636884f67320c6a56be2a8106c5af960 | |
| parent | 247afd63f28e75066649f54dfdbe913764d53518 (diff) | |
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 <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/bioinformatics.scm | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 80e5f24f8fb..1cd275159b5 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 |
