gnu: python-discogs-client: Update to 2.3.12.

* gnu/packages/music.scm (python-discogs-client)[version]: Update to 2.3.12.
[source]: Switch to fork.
[home-page]: Ditto.
[synopsis]: Remove “official”.
[description]: Mention we’re using a fork.
[native-inputs]: Remove.
[propagated-inputs]: Add python-dateutil.
This commit is contained in:
Lars-Dominik Braun 2021-09-02 13:51:18 +02:00
parent ab12354c0a
commit ef9ad66f35
No known key found for this signature in database
GPG key ID: F663943E08D8092A

View file

@ -4695,26 +4695,26 @@ provide a very simple interface for editing and playing MIDI loops.")
(define-public python-discogs-client (define-public python-discogs-client
(package (package
(name "python-discogs-client") (name "python-discogs-client")
(version "2.2.1") (version "2.3.12")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "discogs-client" version)) (uri (pypi-uri "python3-discogs-client" version))
(sha256 (sha256
(base32 (base32
"053ld2psh0yj3z0kg6z5bn4y3cr562m727494n0ayhgzbkjbacly")))) "1zmib0i9jicv9fyphgkcrk418qmpv3l4p38ibl31sh237ki5xqw9"))))
(build-system python-build-system) (build-system python-build-system)
(propagated-inputs (propagated-inputs
`(("python-oauthlib" ,python-oauthlib) `(("python-dateutil" ,python-dateutil)
("python-oauthlib" ,python-oauthlib)
("python-requests" ,python-requests))) ("python-requests" ,python-requests)))
(native-inputs (home-page "https://github.com/joalla/discogs_client")
`(("python-six" ,python-six))) (synopsis "Python client for the Discogs API")
(home-page "https://github.com/discogs/discogs_client") (description "This is the continuation of the official Discogs API
(synopsis "Official Python client for the Discogs API") client for Python. It enables you to query the Discogs database for
(description "This is the official Discogs API client for Python. It enables information on artists, releases, labels, users, Marketplace listings,
you to query the Discogs database for information on artists, releases, labels, and more. It also supports OAuth 1.0a authorization, which allows you to
users, Marketplace listings, and more. It also supports OAuth 1.0a change user data such as profile information, collections and wantlists,
authorization, which allows you to change user data such as profile information, inventory, and orders.")
collections and wantlists, inventory, and orders.")
(license license:bsd-2))) (license license:bsd-2)))
(define-public python2-discogs-client (define-public python2-discogs-client