summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-06-25 23:18:50 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-06-25 23:43:59 +0100
commit881eeccc72aa57a81f92f95a140831c1ef956cb0 (patch)
treec57b9bbe22173db360076a252c3a240a0e747868
parenta8d3f40966c06178308ec9a4c7ef354c012ee03a (diff)
gnu: python-simplesoapy: Use pypproject-build-system.
* gnu/packages/radio.scm (python-simplesoapy) [build-system]: Use pypproject. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: Ied16728e4e45baffdf6824142dab441ae5d8e672
-rw-r--r--gnu/packages/radio.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index 7402895249..8d6403c6bb 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -750,7 +750,10 @@ a local network link.")
(uri (pypi-uri "SimpleSoapy" version))
(sha256
(base32 "0bh02m5zj82mp7sxpvwr24ylmrbp3p4r9q7psqcfnxl628w3b4hl"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-setuptools
+ python-wheel))
(propagated-inputs
(list python-numpy soapysdr))
(home-page "https://github.com/xmikos/simplesoapy")