diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-12 09:51:42 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-12 12:03:35 -0400 |
commit | 193e294b2aeeddecb225a7ce86e7c996ecf86e2a (patch) | |
tree | 2de5cfea2798e85f4d376d78623b9907c75386f2 | |
parent | a9605820d93ade88fcd95889ec2dfc99cf96ae5b (diff) | |
download | guix-193e294b2aeeddecb225a7ce86e7c996ecf86e2a.tar.gz |
gnu: python-ufo2ft: Update to 2.31.0.
* gnu/packages/fontutils.scm (python-ufo2ft): Update to 2.31.0. [build-system]: Use pyproject-build-system. [arguments]: Delete field.
-rw-r--r-- | gnu/packages/fontutils.scm | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index d55de1cbda..af9405f2e4 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -436,23 +436,15 @@ converts any cubic curves to quadratic. The most useful function is probably (define-public python-ufo2ft (package (name "python-ufo2ft") - (version "2.28.0") + (version "2.31.0") (source (origin (method url-fetch) (uri (pypi-uri "ufo2ft" version)) (sha256 - (base32 "068hm62s1iphyg66w96vgiif6ahpcsaf8fr44rk6jdf71f6fyqd5")))) - (build-system python-build-system) - (arguments - (list #:phases - #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest" "-vv"))))))) - (native-inputs - (list python-pytest python-setuptools-scm)) + (base32 "1rg2997af8blvswlwif0kpz2vxrlh555gzqslz6yv9y7i7v8lphl")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools-scm)) (propagated-inputs (list python-booleanoperations python-cffsubr |