diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-05 16:11:14 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-05 17:09:10 +0100 |
| commit | dd5cf4eee317f47eb0cf80aedfeb578b718a43d2 (patch) | |
| tree | 86a85a1a2c9bef8c4cfa1f62c58a28d122f7b57b | |
| parent | f8304ab7362e7b2bc6b310072ad59f08a554d1fd (diff) | |
gnu: python-wikidata: Move to python-web.
* gnu/packages/python-xyz.scm (python-wikidata): Move from here ...
* gnu/packages/python-web.scm: ... to here.
Change-Id: Id62d5b7c5ff55025cc8355bef70095588b517e49
| -rw-r--r-- | gnu/packages/python-web.scm | 23 | ||||
| -rw-r--r-- | gnu/packages/python-xyz.scm | 22 |
2 files changed, 23 insertions, 22 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 8ab98ee1bf..810f2108c5 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -28,6 +28,7 @@ ;;; Copyright © 2018 Marius Bakke <marius@gnu.org> ;;; Copyright © 2018 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2018, 2020, 2021, 2022, 2023 Maxim Cournoyer <maxim@guixotic.coop> +;;; Copyright © 2018 swedebugia <swedebugia@riseup.net> ;;; Copyright © 2019 Vagrant Cascadian <vagrant@debian.org> ;;; Copyright © 2019 Brendan Tildesley <mail@brendan.scot> ;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com> @@ -4329,6 +4330,28 @@ set out in RFC 7540 Section 5.3 (Stream Priority).") @url{https://weblate.org/, Weblate}i.") (license license:expat))) +(define-public python-wikidata + (package + (name "python-wikidata") + (version "0.6.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "Wikidata" version)) + (sha256 + (base32 + "08nlnydddfp1jj0cdmshvld1irzngbp3dij928wqsg9ziklm6mw9")))) + (build-system python-build-system) + (propagated-inputs + (list python-babel)) + (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"))) + (license license:gpl3+))) + (define-public python-wsproto (package (name "python-wsproto") diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 90a7a10229..e0af14b291 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -30581,28 +30581,6 @@ versions, as produced by @code{ast.parse} from the standard @code{ast} module.") (license license:bsd-3))) -(define-public python-wikidata - (package - (name "python-wikidata") - (version "0.6.1") - (source - (origin - (method url-fetch) - (uri (pypi-uri "Wikidata" version)) - (sha256 - (base32 - "08nlnydddfp1jj0cdmshvld1irzngbp3dij928wqsg9ziklm6mw9")))) - (build-system python-build-system) - (propagated-inputs - (list python-babel)) - (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"))) - (license license:gpl3+))) - ;; XXX: Not maintained since 2022, leaf package. (define-public python-attr (package |
