guix_mirror_bot pushed a commit to branch master
in repository guix.

commit e28c7be06a4df13ea325f592694e6952c5f963ff
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 3 23:10:23 2025 +0100

    gnu: Add python-hatch-gettext.
    
    * gnu/packages/python-xyz.scm (python-hatch-gettext): New variable.
    
    Change-Id: Ic2baf9839a6bf08b0fc8cc2c882b42a9e35f0848
---
 gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

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

Reply via email to