diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-05 16:17:04 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-05 17:09:10 +0100 |
| commit | 0d889d8523deaaad1b4a2a194eb8dc3883e9b228 (patch) | |
| tree | 5823c7615e8bd68f7d1c7f75b2ecfadaa1dff800 /gnu/packages/python-web.scm | |
| parent | dd5cf4eee317f47eb0cf80aedfeb578b718a43d2 (diff) | |
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
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 23 |
1 files 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 |
