guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 60eb8eee7583b410338e098809229a355f105f70 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Fri Jul 18 15:13:00 2025 +0100
gnu: Add python-weblate-language-data. * gnu/packages/python-web.scm (python-weblate-language-data): New variable. Change-Id: I3eba1b46c50f1ee05277d31fcd06cd1b765392c9 --- gnu/packages/python-web.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 0dfa2df58b..df8e65a4f9 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -3965,6 +3965,29 @@ teams extension for python-openid.") set out in RFC 7540 Section 5.3 (Stream Priority).") (license license:expat))) +(define-public python-weblate-language-data + (package + (name "python-weblate-language-data") + (version "2025.8") + (source + (origin + (method url-fetch) + (uri (pypi-uri "weblate_language_data" version)) + (sha256 + (base32 "0byj1xl6xldam790b6wg62dk1b4i6qdlsp4lqzlv65wnp2klvrkf")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;not tests, just data files + (native-inputs + (list python-setuptools)) + (propagated-inputs + (list python-translate-toolkit)) + (home-page "https://github.com/WeblateOrg/language-data") + (synopsis "Language definitions for Weblate") + (description + "This package provides language definitions used by +@url{https://weblate.org/, Weblate}i.") + (license license:expat))) + (define-public python-wsproto (package (name "python-wsproto")