me
/
guix
Archived
1
0
Fork 0

gnu: python-capablerobot-usbhub: Update to 0.5.0.

* gnu/packages/libusb.scm (python-capablerobot-usbhub): Fix build and update to 0.5.0.
[source]: Use Git checkout which allows to pass build the package.
[build-system]: Use PYPROJECT-BUILD-SYSTEM.
[arguments]{tests}: Disable them as not provided.
[phases]use-poetry-core}: New phase.
[phases]{install-udev-rules}: Remove trailing #T from lambda.
[native-inputs]: Add PYTHON-POETRY-CORE.
[propagated-inputs]: Replace PYTHON-PYYAML-7 and PYTHON-PYYAML-5 by
PYTHON-CLICK and PYTHON-PYYAML.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Sharlatan Hellseher 2023-02-12 23:49:57 +00:00 committed by Nicolas Goaziou
parent 5204f2edf4
commit ed00a514e5
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 24 additions and 10 deletions

View File

@ -12,6 +12,7 @@
;;; Copyright © 2020 Christopher Howard <christopher@librehacker.com> ;;; Copyright © 2020 Christopher Howard <christopher@librehacker.com>
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net> ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2022 Jacob Hrbek <kreyren@rixotstudio.cz> ;;; Copyright © 2022 Jacob Hrbek <kreyren@rixotstudio.cz>
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -40,6 +41,7 @@
#:use-module (guix build-system cmake) #:use-module (guix build-system cmake)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (guix build-system glib-or-gtk) #:use-module (guix build-system glib-or-gtk)
#:use-module (guix build-system pyproject)
#:use-module (guix build-system python) #:use-module (guix build-system python)
#:use-module (gnu packages autotools) #:use-module (gnu packages autotools)
#:use-module (gnu packages compression) #:use-module (gnu packages compression)
@ -51,6 +53,7 @@
#:use-module (gnu packages mp3) #:use-module (gnu packages mp3)
#:use-module (gnu packages pkg-config) #:use-module (gnu packages pkg-config)
#:use-module (gnu packages python) #:use-module (gnu packages python)
#:use-module (gnu packages python-build)
#:use-module (gnu packages python-xyz) #:use-module (gnu packages python-xyz)
#:use-module (gnu packages readline) #:use-module (gnu packages readline)
#:use-module (gnu packages tls) #:use-module (gnu packages tls)
@ -310,18 +313,28 @@ wrapper for accessing libusb-1.0.")
(define-public python-capablerobot-usbhub (define-public python-capablerobot-usbhub
(package (package
(name "python-capablerobot-usbhub") (name "python-capablerobot-usbhub")
(version "0.2.7") (version "0.5.0")
(source (source
(origin (origin
(method url-fetch) ;; PyPI tarball fails to build.
(uri (pypi-uri "capablerobot_usbhub" version)) (method git-fetch)
(uri (git-reference
(url "https://github.com/CapableRobot/CapableRobot_USBHub_Driver")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "1nfd12612z9a9hby5dxg7lfqw5jcv3wcyqqagbg5izragni646mc"))))
"1priic4iq2vn1rc711kzxwhxrwa508rkxrr193qdz2lw26kdhvix")))) (build-system pyproject-build-system)
(build-system python-build-system)
(arguments (arguments
`(#:phases `(#:tests? #f ; No tests provided.
#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-after 'unpack 'use-poetry-core
(lambda _
;; Patch to use the core poetry API.
(substitute* "pyproject.toml"
(("poetry.masonry.api")
"poetry.core.masonry.api"))))
(add-after 'install 'install-udev-rules (add-after 'install 'install-udev-rules
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out"))) (let ((out (assoc-ref outputs "out")))
@ -329,10 +342,11 @@ wrapper for accessing libusb-1.0.")
(copy-file "50-capablerobot-usbhub.rules" (copy-file "50-capablerobot-usbhub.rules"
(string-append out (string-append out
"/lib/udev/rules.d/" "/lib/udev/rules.d/"
"50-capablerobot-usbhub.rules")) "50-capablerobot-usbhub.rules"))))))))
#t)))))) (native-inputs
(list python-poetry-core))
(propagated-inputs (propagated-inputs
(list python-click python-construct python-pyusb python-pyyaml)) (list python-click-7 python-construct python-pyusb python-pyyaml-5))
(home-page (home-page
"https://github.com/CapableRobot/CapableRobot_USBHub_Driver") "https://github.com/CapableRobot/CapableRobot_USBHub_Driver")
(synopsis (synopsis