summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2025-12-15 21:36:14 +0100
committerAndreas Enge <andreas@enge.fr>2025-12-17 11:20:21 +0100
commitec18fea38bfdc5339c112bae4f3a73768c6a2e8e (patch)
tree46720fde877d4a973eb14a39da94e77037dec6e9 /gnu
parentfd5ccad45e0363aa91ad38653e99f13b934d1c87 (diff)
gnu: python-msgpack-numpy: Switch to pyproject-build-system.
* gnu/packages/python-science.scm (python-msgpack-numpy): Switch to pyproject-build-system. [build-system]: Switch to pyproject-build-system. [arguments]<#:test-backend>: Select unittest. [native-inputs]: Add python-setuptools. Change-Id: I47958f2fe83411cefd91b664197a5b08e33205b4 Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu')
-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 cb3cd28958f..2b8a43fe4d3 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -1986,7 +1986,11 @@ interpolation of 1D data (for example, time series) with splines.")
(sha256
(base32
"0sbfanbkfs6c77np4vz0ayrwnv99bpn5xgj5fnf2yhhk0lcd6ry6"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:test-backend #~'unittest))
+ (native-inputs
+ (list python-setuptools))
(propagated-inputs
(list python-msgpack python-numpy))
(home-page "https://github.com/lebedov/msgpack-numpy")