guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 56a39c4fbb480aadb51f086913be7e0ab916ff58
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Dec 27 16:46:15 2025 +0100

    gnu: python-podcastparser: Update to 0.6.11.
    
    * gnu/packages/gpodder.scm (python-podcastparser): Update to 0.6.11.
    [build-system]: Switch to pyproject-build-system.
    [arguments]: Drop them.
    [native-inputs]: Add python-pytest, python-setuptools.
    [description]: Improve style.
    
    Change-Id: Iac64df0ad178fd3c840f0c6698b1a32565809574
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/gpodder.scm | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/gpodder.scm b/gnu/packages/gpodder.scm
index b8eb758897..2cab1d53a4 100644
--- a/gnu/packages/gpodder.scm
+++ b/gnu/packages/gpodder.scm
@@ -205,26 +205,21 @@ episode status changes.")
 (define-public python-podcastparser
   (package
     (name "python-podcastparser")
-    (version "0.6.10")
+    (version "0.6.11")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "podcastparser" version))
        (sha256
-        (base32 "1mqkkxz928y430xx3mgw9dj78ilkgv9hjdha1hizbks6mmhcp6ib"))))
+        (base32 "12bysnajlqmsm1ns8l4j8d2dgwqyyq8jdfsm1vsksv5qj0zndhin"))))
+    (build-system pyproject-build-system)
     (native-inputs
-     (list python-pytest))
-    (arguments
-     '(#:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           (lambda _ (invoke "pytest"))))))
-    (build-system python-build-system)
+     (list python-pytest python-setuptools))
     (home-page "http://gpodder.org/podcastparser";)
     (synopsis "Simplified and fast RSS parser Python library")
-    (description "@code{podcastparser} is a library for the gPodder project to
-provide an easy and reliable way of parsing RSS and Atom-based podcast feeds
-in Python.")
+    (description
+     "@code{podcastparser} is a library for the gPodder project to provide an
+easy and reliable way of parsing RSS and Atom-based podcast feeds in Python.")
     (license license:isc)))
 
 (define-public castget

Reply via email to