mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-labjack.
* gnu/packages/python-xyz.scm (python-labjack): New variable.
This commit is contained in:
parent
1c7d5b1c82
commit
b9c8c3585b
1 changed files with 32 additions and 0 deletions
|
@ -17020,6 +17020,38 @@ (define-public python-exodriver
|
|||
communicate with the instruments via USB.")
|
||||
(license license:expat))) ;see README
|
||||
|
||||
(define-public python-labjack
|
||||
(package
|
||||
(name "python-labjack")
|
||||
(version "2.0.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "LabJackPython" version))
|
||||
(sha256
|
||||
(base32
|
||||
"013bjqdi05vlbdqprr6kqi8gs4qhqc7rnyp1klw8k6fng77rpdzz"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:tests? #f ;no test suite
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-liblabjackusb.so
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* (find-files "." "\\.py$")
|
||||
(("ctypes.CDLL\\(\"liblabjackusb.so\"")
|
||||
(format #f "ctypes.CDLL(~s"
|
||||
(search-input-file inputs
|
||||
"lib/liblabjackusb.so")))))))))
|
||||
;; 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.")
|
||||
(license license:expat))) ;see setup.py
|
||||
|
||||
(define-public python-kivy-garden
|
||||
(package
|
||||
(name "python-kivy-garden")
|
||||
|
|
Loading…
Reference in a new issue