diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-18 15:13:00 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:18 +0100 |
| commit | 5cee83c9981157b4b42947946bcbdab3ae72fef8 (patch) | |
| tree | f162111e5df374e704de3d633b4e6a70bb4488a7 /gnu/packages/python-web.scm | |
| parent | bcdb866c9bfa6ec14fec9e87f6953c455d218ba6 (diff) | |
gnu: Add python-weblate-language-data.
* gnu/packages/python-web.scm (python-weblate-language-data): New variable.
Change-Id: I3eba1b46c50f1ee05277d31fcd06cd1b765392c9
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 4e8962bec32..00dc96450a1 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -4066,6 +4066,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") |
