gnu: python-pyusb: Update to 1.0.2.

* gnu/packages/libusb.scm (python-pyusb): Update to 1.0.2.
[source]: Update PyPI package name.
[home-page]: Update URI.
This commit is contained in:
Tobias Geerinckx-Rice 2018-08-17 02:55:11 +02:00
parent e2749d7576
commit 3ef4b30128
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -261,17 +261,17 @@ (define-public python-libusb1
(define-public python-pyusb (define-public python-pyusb
(package (package
(name "python-pyusb") (name "python-pyusb")
(version "1.0.0") (version "1.0.2")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "PyUSB" version)) (uri (pypi-uri "pyusb" version))
(sha256 (sha256
(base32 (base32
"0s2k4z06fapd5vp1gnrlf8a9sjpc03p9974lzw5k6ky39akzyd2v")))) "0qkk2jn270jwwl1x26hmdhb14m9kkbrzzwzizdjcl1a29b6756sf"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:tests? #f ;no tests `(#:tests? #f ; no tests
#:modules ((srfi srfi-1) #:modules ((srfi srfi-1)
(srfi srfi-26) (srfi srfi-26)
(guix build utils) (guix build utils)
@ -291,7 +291,7 @@ (define-public python-pyusb
#t))))) #t)))))
(inputs (inputs
`(("libusb" ,libusb))) `(("libusb" ,libusb)))
(home-page "http://walac.github.io/pyusb/") (home-page "https://pyusb.github.io/pyusb/")
(synopsis "Python bindings to the libusb library") (synopsis "Python bindings to the libusb library")
(description (description
"PyUSB aims to be an easy to use Python module to access USB devices.") "PyUSB aims to be an easy to use Python module to access USB devices.")