From e6fba3945fdededc259faff65d41c22b4c4185bc Mon Sep 17 00:00:00 2001 From: Hugo Buddelmeijer Date: Fri, 26 Dec 2025 19:08:56 +0100 Subject: [PATCH] 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 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-science.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 0144e80ad43fb88d067bd70d1d787e81320f0802..925cf4da904bf13580ff2b9c9d0ba8015127c35b 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")