diff options
author | Hanketsu <hanketsu@egregore.fun> | 2025-02-28 11:02:39 +0100 |
---|---|---|
committer | Hanketsu <hanketsu@egregore.fun> | 2025-06-13 00:04:34 +0200 |
commit | 3e02bd1be573e6a5968dc2dd882889ba4f8a89a6 (patch) | |
tree | 92ad2e245dc434636f1a6744d6506c0b86f3d390 /battering | |
parent | dddc2f5f1c34c3d08e71fefc90bb228c36d192f3 (diff) |
battering: Add python-uharfbuzz.
* battering/packages/python-xyz.scm (python-uharfbuzz): New variable.
Diffstat (limited to 'battering')
-rw-r--r-- | battering/packages/python-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/battering/packages/python-xyz.scm b/battering/packages/python-xyz.scm index 619cab9..547d354 100644 --- a/battering/packages/python-xyz.scm +++ b/battering/packages/python-xyz.scm @@ -339,3 +339,26 @@ declarative configuration.") (synopsis "Create standard barcodes with Python.") (description "This package provides a simple way to create barcodes in Python.") (license license:expat))) + +(define-public python-uharfbuzz + (package + (name "python-uharfbuzz") + (version "0.45.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "uharfbuzz" version)) + (sha256 + (base32 "19il53ghx6bp5nwbznvim4km9pm8dc7viq3iskx0iyc26shakhis")))) + ;; TODO: use system harfbuzz instead of the bundled one + (build-system pyproject-build-system) + (native-inputs (list python-cython + python-pkgconfig + python-setuptools + python-setuptools-scm + python-wheel)) + (home-page "https://github.com/trufont/uharfbuzz") + (synopsis "Harfbuzz Python bindings") + (description + "Streamlined Cython bindings for the harfbuzz shaping engine.") + (license license:asl2.0))) |