guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 61151eda8ac2c7dc5b8ce952ee9460760533913e
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Feb 9 18:13:48 2026 +0100

    gnu: libiio: Fix package build under python-3.12.
    
    * gnu/packages/radio.scm (libiio)
    [native-inputs]: Add python-setuptools.
    [license]: Relocate field.
    
    Change-Id: Ief3c5f10b0744e4121b8b9297382d2d2d6598277
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/radio.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index c87b9ff017..c5a2a6f0f5 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -253,15 +253,14 @@ used as a drop-in substitute for @code{libfec}.")
      (list pkg-config
            flex
            bison
-           python))
+           python
+           python-setuptools))
     (inputs
      (list avahi
            libaio
            libxml2
            libusb))
     (build-system cmake-build-system)
-    (license (list license:lgpl2.1
-                   license:gpl2))
     (home-page "https://github.com/analogdevicesinc/libiio";)
     (synopsis "Library for interfacing with Linux IIO devices")
     (description
@@ -275,7 +274,8 @@ DDS (Direct Digital Synthesis), PLLs (Phase Locked Loops),
 Variable/Programmable Gain Amplifiers (VGA, PGA), and RF transceivers.  You can
 use libiio natively on an embedded Linux target (local mode), or use libiio to
 communicate remotely to that same target from a host Linux, Windows or MAC
-over USB or Ethernet or Serial.")))
+over USB or Ethernet or Serial.")
+    (license (list license:lgpl2.1 license:gpl2))))
 
 (define-public libad9361
   (package

Reply via email to