mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
gnu: python-usbrelay: Fix build.
* gnu/packages/hardware.scm (python-usbrelay): Fix build. [arguments] <#:phases>: Replace 'check phase. [native-inputs]: Remove python-wheel. Change-Id: I8b1de9158c277e83775fad4cab9ce56f87a8caab
This commit is contained in:
committed by
Sharlatan Hellseher
parent
b9c385a274
commit
e3f81f5955
@@ -1772,8 +1772,7 @@ output relays.")
|
||||
(name "python-usbrelay")
|
||||
(build-system pyproject-build-system)
|
||||
(native-inputs
|
||||
(list python-setuptools
|
||||
python-wheel))
|
||||
(list python-setuptools))
|
||||
(inputs
|
||||
(list usbrelay))
|
||||
(propagated-inputs
|
||||
@@ -1791,7 +1790,11 @@ output relays.")
|
||||
(chmod (string-append #$output "/sbin/usbrelayd") #o555)))
|
||||
(add-after 'install-daemon 'chdir
|
||||
(lambda _
|
||||
(chdir "usbrelay_py"))))))
|
||||
(chdir "usbrelay_py")))
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "python" "tests/usbrelay_test.py")))))))
|
||||
(synopsis "Python library to control USB relay modules")
|
||||
(description
|
||||
"This is the Python extension to @code{usbrelay}, a Linux driver based on
|
||||
|
||||
Reference in New Issue
Block a user