From a44710fc639cd1d967df92e52e0c36e988dd9018 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Sun, 22 Jun 2025 10:30:19 -0300 Subject: [PATCH] gnu: python-feedgenerator: Update to 2.1.0. * gnu/packages/python-xyz.scm (python-feedgenerator): Update to 2.1.0. [source]: Remove unnecessary snippet. [build-system]: Use pyproject-build-system. [native-inputs]: Add python-pytest, python-pytest-cov, python-setuptools, python-wheel. [propagated-inputs]: Remove python-six. Change-Id: I2451794d21c0c473183f9f90f14ad8b198883455 --- gnu/packages/python-xyz.scm | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 308cf6ff19bed4e5865dcb1ebace8eba3153617c..2a5fc0d8c8cfaac076014a9ce30a276e51f263f7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9224,25 +9224,19 @@ public key files.") (define-public python-feedgenerator (package (name "python-feedgenerator") - (version "1.9") + (version "2.1.0") (source (origin (method url-fetch) (uri (pypi-uri "feedgenerator" version)) (sha256 (base32 - "01mirwkm7xfx539hmvj7g9da1j51gw5lsx74dr0glizskjm5vq2s")) - (modules '((guix build utils))) - (snippet - '(begin - ;; Remove pre-compiled .pyc files from source. - (for-each delete-file-recursively - (find-files "." "__pycache__" #:directories? #t)) - (for-each delete-file (find-files "." "\\.pyc$")) - #t)))) - (build-system python-build-system) + "179bshnb0ssx7pspzbyaqvhi5w3c3hb15cingh4py8px50zz4xgh")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest python-pytest-cov python-setuptools python-wheel)) (propagated-inputs - (list python-pytz python-six)) + (list python-pytz)) (home-page "https://github.com/getpelican/feedgenerator") (synopsis "Standalone version of Django's Atom/RSS feed generator")