From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:53704) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h6len-0005Ky-Nv for guix-patches@gnu.org; Wed, 20 Mar 2019 20:34:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h6lU7-0007tf-96 for guix-patches@gnu.org; Wed, 20 Mar 2019 20:23:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:38974) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h6lU6-0007sX-Ua for guix-patches@gnu.org; Wed, 20 Mar 2019 20:23:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h6lU6-0007g4-PS for guix-patches@gnu.org; Wed, 20 Mar 2019 20:23:02 -0400 Subject: [bug#34931] [PATCH 2/5] gnu: Add python-podcastparser. Resent-Message-ID: From: Pierre Langlois Date: Thu, 21 Mar 2019 00:22:01 +0000 Message-Id: <20190321002204.25294-2-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-podcastparser): New variable. =2D-- gnu/packages/gpodder.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/gpodder.scm b/gnu/packages/gpodder.scm index c0150402c4..5b872908a5 100644 =2D-- a/gnu/packages/gpodder.scm +++ b/gnu/packages/gpodder.scm @@ -21,7 +21,9 @@ #:use-module (guix packages) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix build-system cmake) + #:use-module (guix build-system python) #:use-module (gnu packages) + #:use-module (gnu packages check) #:use-module (gnu packages pkg-config) #:use-module (gnu packages qt)) @@ -54,3 +56,24 @@ @url{https://gpodder.net} APIs. It allows applications to discover, mana= ge and track podcasts.") (license license:lgpl2.1+))) + +(define-public python-podcastparser + (package + (name "python-podcastparser") + (version "0.6.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "podcastparser" version)) + (sha256 + (base32 + "1ksj1gcmbnm5i43xhpqxbs2mqi6xzawwwkwbh9h6lwa1wxxvv247")))) + (native-inputs + `(("python-nose" ,python-nose))) + (build-system python-build-system) + (home-page "http://gpodder.org/podcastparser") + (synopsis "Simplified and fast RSS parser Python library") + (description "@code{podcastparser} is a library for the gPodder proje= ct to +provide an easy and reliable way of parsing RSS and Atom-based podcast fe= eds +in Python.") + (license license:isc))) =2D- 2.21.0