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

commit 32daff93c0f1860192378ae6ea87d6ef5ebf7015
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 d2b2026a97..4ae7909bd5 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -281,15 +281,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
@@ -303,7 +302,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