diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-25 23:21:38 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-25 23:43:59 +0100 |
commit | 53dd48bf65db661e7c4919e82de97c2d788a11ce (patch) | |
tree | 88669b68e49802a170e579b9e86355252c15e0ae | |
parent | 881eeccc72aa57a81f92f95a140831c1ef956cb0 (diff) |
gnu: soapy-power: Use pypproject-build-system.
* gnu/packages/radio.scm (soapy-power): Update to 1.6.1.
[build-system]: Use pypproject.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: Ia8ebd5fa0b28b1ed24d76ee7ace36803d2329fa5
-rw-r--r-- | gnu/packages/radio.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 8d6403c6bb..6f54244c2e 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -773,7 +773,12 @@ library.") (uri (pypi-uri "soapy_power" version)) (sha256 (base32 "1rajmygcqvv5ph7yk65r4w581lfszrz0f48csvfmma1ami0lirdm")))) - (build-system python-build-system) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ; no tests in PyPI or Git + (native-inputs + (list python-setuptools + python-wheel)) (inputs (list python-numpy python-scipy |