guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 94e7d9821268c64d072885fc19cd1c0e10457916
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Oct 25 14:25:00 2025 +0200

    gnu: python-labjack: Update to 2.1.0.
    
    * gnu/packages/python-xyz.scm (python-labjack): Update to 2.1.0.
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Add python-setuptools.
    [description]: Improve style.
    
    Change-Id: I14c00f46e16d7282f3eff71fca164be2b3e5006c
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e9cbd25225..6becb4727a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22792,14 +22792,14 @@ communicate with the instruments via USB.")
 (define-public python-labjack
   (package
     (name "python-labjack")
-    (version "2.0.4")
+    (version "2.1.0")
     (source (origin
               (method url-fetch)
               (uri (pypi-uri "LabJackPython" version))
               (sha256
                (base32
-                "013bjqdi05vlbdqprr6kqi8gs4qhqc7rnyp1klw8k6fng77rpdzz"))))
-    (build-system python-build-system)
+                "0q516y0gzxlk298whiaw0qdi4jcmx7l5y3mp5g5lj68nrvhqzyy4"))))
+    (build-system pyproject-build-system)
     (arguments
      (list
       #:tests? #f                       ;no test suite
@@ -22812,13 +22812,15 @@ communicate with the instruments via USB.")
                  (format #f "ctypes.CDLL(~s"
                          (search-input-file inputs
                                             "lib/liblabjackusb.so")))))))))
+    (native-inputs (list python-setuptools))
     ;; exodriver is provided as a regular input, as only its shared object is
     ;; used, not its Python API.
     (inputs (list python-exodriver))
     (home-page 
"https://labjack.com/support/software/examples/ud/labjackpython";)
     (synopsis "Python library for LabJack U3, U6, UE9 and U12")
-    (description "This Python library allows communicating with the U3, U6,
-UE9 and U12 LabJack data acquisition (DAQ) modules.")
+    (description
+     "This Python library allows communicating with the U3, U6, UE9 and U12
+LabJack data acquisition (DAQ) modules.")
     (license license:expat)))          ;see setup.py
 
 (define-public python-kivy-garden

Reply via email to