~ruther/guix-local

e28c7be06a4df13ea325f592694e6952c5f963ff — Sharlatan Hellseher 7 months ago 4a1fd34
gnu: Add python-hatch-gettext.

* gnu/packages/python-xyz.scm (python-hatch-gettext): New variable.

Change-Id: Ic2baf9839a6bf08b0fc8cc2c882b42a9e35f0848
1 files changed, 20 insertions(+), 0 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +20 -0
@@ 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