guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 0d889d8523deaaad1b4a2a194eb8dc3883e9b228
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Oct 5 16:17:04 2025 +0100
gnu: python-wikidata: Update to 0.8.1.
* gnu/packages/python-web.scm (python-wikidata): Update to 0.8.1.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[propagated-inputs]: Remove python-babel.
[native-inputs]: Add python-pytest and python-setuptools.
[properties]: Drop them.
Change-Id: I9e189859bdcb7f3038ffa8ab55cae40ea9e1c63e
---
gnu/packages/python-web.scm | 23 ++++++++++++-----------
1 file changed, 12 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 810f2108c5..6ff1bfdb37 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4333,23 +4333,24 @@ set out in RFC 7540 Section 5.3 (Stream Priority).")
(define-public python-wikidata
(package
(name "python-wikidata")
- (version "0.6.1")
+ (version "0.8.1")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "Wikidata" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dahlia/wikidata")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "08nlnydddfp1jj0cdmshvld1irzngbp3dij928wqsg9ziklm6mw9"))))
- (build-system python-build-system)
- (propagated-inputs
- (list python-babel))
+ (base32 "06zg74h249phszn1znfcjdz6c3lz350fiabdzn7iqb2xg4xh69a5"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest python-setuptools))
(home-page "https://github.com/dahlia/wikidata")
(synopsis "Wikidata client library")
(description
- "This package provides a Python interface to
-@url{https://www.wikidata.org/, Wikidata}.")
- (properties '((upstream-name . "Wikidata")))
+ "This package provides a Python interface to
@url{https://www.wikidata.org/,
+Wikidata}.")
(license license:gpl3+)))
(define-public python-wsproto