summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-03 23:10:23 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-03 23:12:47 +0100
commite28c7be06a4df13ea325f592694e6952c5f963ff (patch)
tree32d8dc46109e36643d6db27ee2d6c630e929c887
parent4a1fd34e0e721cffee26a22a9c54d352301328bc (diff)
gnu: Add python-hatch-gettext.
* gnu/packages/python-xyz.scm (python-hatch-gettext): New variable. Change-Id: Ic2baf9839a6bf08b0fc8cc2c882b42a9e35f0848
-rw-r--r--gnu/packages/python-xyz.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1c81d12a15..8038ae30ee 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1049,6 +1049,26 @@ It also supports IPython/Jupyter.")
by Pavel Raiskup.")
(license license:gpl3+)))
+(define-public python-hatch-gettext
+ (package
+ (name "python-hatch-gettext")
+ (version "1.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "hatch_gettext" version))
+ (sha256
+ (base32 "05sh574p1c4wdf9gky965km3f5n904hxkyils07f1b0jyswlm3nh"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-hatchling))
+ (propagated-inputs (list python-rich))
+ (home-page "https://github.com/damonlynch/hatch-gettext")
+ (synopsis "Hatch build hook plugin for GNU gettext")
+ (description
+ "This package provides a build hook plugin for Hatch that compiles
+ bsmulti-lingual messages with GNU gettext's tools msgfmt.")
+ (license license:gpl3+)))
+
;; TODO: Move to ci or task-runners, see:
;; <https://codeberg.org/guix/guix/issues/3096>.
(define-public python-huey