From 00a8af7a0fc57956045c84c9f9c6873c196d583c Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 21 Sep 2025 13:19:45 +0100 Subject: [PATCH] gnu: python-fontmath: Update to 0.9.4. * gnu/packages/fontutils.scm (python-fontmath): Update to 0.9.4. [build-system]: Switch to pyproject-build-system. [native-inputs]: Remove python-pytest-runner and python-wheel; add python-setuptools. Change-Id: I606bc0afba02d68a524743958dded5ccb875105b --- gnu/packages/fontutils.scm | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index 2762aec3af6..9b1841cc84f 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -585,20 +585,19 @@ to generate OpenType font binaries from Unified Font Objects (UFOs).") (define-public python-fontmath (package (name "python-fontmath") - (version "0.9.3") + (version "0.9.4") (source (origin (method url-fetch) (uri (pypi-uri "fontMath" version ".zip")) (sha256 - (base32 "070v1jz5f18g15if459ppwswq4w5hzffwp1gvdc5j47bgz5qflva")))) - (build-system python-build-system) + (base32 "197dgbnhg6n937ifsi3w9dm283wi3nwp35y4qc2i6kkqkl61kn8z")))) + (build-system pyproject-build-system) (propagated-inputs (list python-fonttools-minimal)) (native-inputs - (list python-setuptools-scm - python-pytest - python-pytest-runner - python-wheel + (list python-pytest + python-setuptools + python-setuptools-scm unzip)) (home-page "https://github.com/robotools/fontMath") (synopsis "Fast font mathematical operations library")