aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--battering/packages/python-xyz.scm23
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)))