* [PATCH 1/1] gnu: Add python-discogs-client.
@ 2016-11-27 15:14 Leo Famulari
2016-11-27 17:30 ` Marius Bakke
0 siblings, 1 reply; 3+ messages in thread
From: Leo Famulari @ 2016-11-27 15:14 UTC (permalink / raw)
To: guix-devel
* gnu/packages/music.scm (python-discogs-client,
python2-discogs-client): New variables.
---
gnu/packages/music.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 1887919..7106963 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -2421,3 +2421,37 @@ a simulation of an analog Wah pedal with switchless activation."))))
filters, crossovers, simple gain plugins without zipper noise, switch box
plugins, a switch trigger, a toggle switch, and a peakmeter.")
(license license:gpl2+))))
+
+(define-public python-discogs-client
+ (package
+ (name "python-discogs-client")
+ (version "2.2.1")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "discogs-client" version))
+ (sha256
+ (base32
+ "053ld2psh0yj3z0kg6z5bn4y3cr562m727494n0ayhgzbkjbacly"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-oauthlib" ,python-oauthlib)
+ ("python-requests" ,python-requests)))
+ (native-inputs
+ `(("python-six" ,python-six)))
+ (home-page "https://github.com/discogs/discogs_client")
+ (synopsis "Official Python Client for the Discogs API")
+ (description "This is the official Discogs API client for Python. It enables
+you to query the Discogs database for information on artists, releases, labels,
+users, Marketplace listings, and more. It also supports OAuth 1.0a
+authorization, which allows you to change user data such as profile information,
+collections and wantlists, inventory, and orders.")
+ (license license:bsd-2)
+ (properties `((python2-variant . ,(delay python2-discogs-client))))))
+
+(define-public python2-discogs-client
+ (let ((base (package-with-python2
+ (strip-python2-variant python-discogs-client))))
+ (package (inherit base)
+ (native-inputs
+ `(("python2-setuptools" ,python2-setuptools)
+ ,@(package-native-inputs base))))))
--
2.10.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] gnu: Add python-discogs-client.
2016-11-27 15:14 [PATCH 1/1] gnu: Add python-discogs-client Leo Famulari
@ 2016-11-27 17:30 ` Marius Bakke
2016-11-27 19:50 ` Leo Famulari
0 siblings, 1 reply; 3+ messages in thread
From: Marius Bakke @ 2016-11-27 17:30 UTC (permalink / raw)
To: Leo Famulari, guix-devel
[-- Attachment #1: Type: text/plain, Size: 316 bytes --]
Leo Famulari <leo@famulari.name> writes:
> * gnu/packages/music.scm (python-discogs-client,
> python2-discogs-client): New variables.
> ---
> gnu/packages/music.scm | 34 ++++++++++++++++++++++++++++++++++
> 1 file changed, 34 insertions(+)
This LGTM. I would de-capitalize "client" in the synopsis, but YMMV :-)
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] gnu: Add python-discogs-client.
2016-11-27 17:30 ` Marius Bakke
@ 2016-11-27 19:50 ` Leo Famulari
0 siblings, 0 replies; 3+ messages in thread
From: Leo Famulari @ 2016-11-27 19:50 UTC (permalink / raw)
To: Marius Bakke; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 448 bytes --]
On Sun, Nov 27, 2016 at 06:30:34PM +0100, Marius Bakke wrote:
> Leo Famulari <leo@famulari.name> writes:
>
> > * gnu/packages/music.scm (python-discogs-client,
> > python2-discogs-client): New variables.
> > ---
> > gnu/packages/music.scm | 34 ++++++++++++++++++++++++++++++++++
> > 1 file changed, 34 insertions(+)
>
> This LGTM. I would de-capitalize "client" in the synopsis, but YMMV :-)
You're right. Pushed with that change!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-11-27 19:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-27 15:14 [PATCH 1/1] gnu: Add python-discogs-client Leo Famulari
2016-11-27 17:30 ` Marius Bakke
2016-11-27 19:50 ` Leo Famulari
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).