From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:53699) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h6lem-0005Kx-AB for guix-patches@gnu.org; Wed, 20 Mar 2019 20:34:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h6lU8-0007wH-Ms for guix-patches@gnu.org; Wed, 20 Mar 2019 20:23:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:38977) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h6lU8-0007vq-Ci for guix-patches@gnu.org; Wed, 20 Mar 2019 20:23:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h6lU8-0007gR-6V for guix-patches@gnu.org; Wed, 20 Mar 2019 20:23:04 -0400 Subject: [bug#34931] [PATCH 4/5] gnu: Add python-mygpoclient. Resent-Message-ID: From: Pierre Langlois Date: Thu, 21 Mar 2019 00:22:03 +0000 Message-Id: <20190321002204.25294-4-pierre.langlois@gmx.com> In-Reply-To: <20190321002204.25294-1-pierre.langlois@gmx.com> References: <20190321002204.25294-1-pierre.langlois@gmx.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 34931@debbugs.gnu.org * gnu/packages/podcast.scm (python-mygpoclient, python2-mygpoclient): New variables. =2D-- gnu/packages/gpodder.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/gpodder.scm b/gnu/packages/gpodder.scm index 5b872908a5..654d6b2f96 100644 =2D-- a/gnu/packages/gpodder.scm +++ b/gnu/packages/gpodder.scm @@ -57,6 +57,28 @@ and track podcasts.") (license license:lgpl2.1+))) +(define-public python-mygpoclient + (package + (name "python-mygpoclient") + (version "1.8") + (source + (origin + (method url-fetch) + (uri (pypi-uri "mygpoclient" version)) + (sha256 + (base32 + "1fi5x6k1mngr0iviw2s4n1f3y2x7pwqy5ivkcrjdprzvwr37f0mh")))) + (build-system python-build-system) + (native-inputs + `(("python-minimock" ,python-minimock))) + (home-page "https://mygpoclient.readthedocs.io") + (synopsis "Python library for the gPodder web service") + (description "@code{mygpoclient} provides an easy and structured way = to +access the @url{https://gpodder.net} web services. In addition to +subscription list synchronization and storage, the API supports uploading= and +downloading episode status changes.") + (license license:gpl3))) + (define-public python-podcastparser (package (name "python-podcastparser") =2D- 2.21.0