summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2025-12-26 19:08:56 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-27 11:56:30 +0000
commite6fba3945fdededc259faff65d41c22b4c4185bc (patch)
treefbd5a425d2ae8d4f83cb84d8014f5d37034fe142 /gnu/packages
parentd985622c78130ff71655d45949aa550f238a70e3 (diff)
gnu: python-simplespectral: Switch to pyproject-build-system.
* gnu/packages/python-science.scm (python-simplespectral): Switch to pyproject-build-system. [build-system]: Switch to pyproject-build-system. [arguments]<#:tests>: Set to #f, as there are no tests. [native-inputs]: Add python-setuptools. Change-Id: Ifabd9561978fec3a7380d8cdb7641732baad01d8 Reviewed-by: Nicolas Graves <ngraves@ngraves.fr> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-science.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 0144e80ad43..925cf4da904 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -5716,7 +5716,11 @@ quite useful when you desire to update your plot in real-time.")
(uri (pypi-uri "SimpleSpectral" version))
(sha256
(base32 "0qh3xwdv9cwcqdamvglrhm586p4yaq1hd291py1fvykhk2a2d4w6"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ;No tests, also not in git repository.
+ (native-inputs
+ (list python-setuptools))
(propagated-inputs
(list python-numpy python-scipy))
(home-page "https://github.com/xmikos/simplespectral")