summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-05 14:00:41 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-05 17:09:12 +0100
commit7813ffeb6937b833aacd59ab2bdf11b1fd102fc8 (patch)
tree4c62aa6b199663965393c0a0e35d3f0cbecff177 /gnu
parent9afef640708213bf0f0ef5051b8030444c776224 (diff)
gnu: python-listparser: Update to 0.20.
* gnu/packages/python-xyz.scm (python-listparser): Update to 0.20. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Change-Id: I118094b715cb8d7808412c9d649cdd28cd3641f2 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm21
1 files changed, 11 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3cbbaa06ee6..d6532b60d35 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -35256,19 +35256,20 @@ from web pages to make them easier to read.")
(define-public python-listparser
(package
(name "python-listparser")
- (version "0.18")
+ (version "0.20")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "listparser" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kurtmckee/listparser")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "0hdqs1mmayw1r8yla43hgb4d9y3zqs5483vgf8j9ygczkd2wrq2b"))))
- (build-system python-build-system)
- (home-page
- "https://github.com/kurtmckee/listparser")
- (synopsis
- "Parse subscription lists in Python")
+ (base32 "0a69cm0inwqwipvnmf5plbf9rqgy1arl62gxnwc7pg7062p563vs"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-poetry-core))
+ (home-page "https://github.com/kurtmckee/listparser")
+ (synopsis "Parse subscription lists in Python")
(description
"This package provides a Python library that can parse OPML, FOAF, and
iGoogle subscription lists.")