diff options
| author | Arun Isaac <arunisaac@systemreboot.net> | 2026-03-20 00:39:15 +0000 |
|---|---|---|
| committer | Arun Isaac <arunisaac@systemreboot.net> | 2026-03-24 22:11:40 +0000 |
| commit | e7020545b394ba6904f633050b9811ea336e08b3 (patch) | |
| tree | 8c8858e75b2a5d16a024f728923e433ef6a60d37 /gnu/packages/python-web.scm | |
| parent | 0680426b1a28691cc58b370e5ff16661521f5bab (diff) | |
gnu: Add python-feedgen.
* gnu/packages/python-web.scm (python-feedgen): New variable.
Change-Id: I2f3f444da871962855bad007365266444bc8b86c
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 1b03355e9fc..cc01a1684d3 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1138,6 +1138,37 @@ Note: In Guix, this package assumes the environment variable to anything else.") (license license:expat))) +(define-public python-feedgen + (package + (name "python-feedgen") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/lkiesow/python-feedgen") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1ppwxp9yck29pk2p2dlrrad6rz16l9h4fhcajp9yb7ns94fm5v3l")))) + (build-system pyproject-build-system) + (propagated-inputs + (list python-dateutil + python-lxml)) + (native-inputs + (list python-pytest + python-setuptools)) + (home-page "https://feedgen.kiesow.be") + (synopsis "Atom and RSS feed generator") + (description + "This module can be used to generate web feeds in both Atom and RSS +format. It also extensible and comes with an extension to produce podcasts.") + ;; The README says that this package is released under both licenses, and + ;; permits the user to choose whichever is more convenient to them. + (license (list license:bsd-2 + license:lgpl3+)))) + (define-public python-flask-caching (package (name "python-flask-caching") |
