diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2023-05-11 08:33:02 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-11 21:12:03 +0100 |
commit | a190a004c04f373e099f3e55748173546daecd99 (patch) | |
tree | 5f023cf99d8491d1adb2d4c3a810a1aeaebbd261 /gnu/packages/fontutils.scm | |
parent | b8fd792ea267cb920da0651074a533d8abf00488 (diff) |
build-system/pyproject: Use python-sans-pip-wrapper as default-python.
Also adds python-setuptools and python-wheel to relevant packages,
either to native-inputs or to propagated inputs if the pkg_resources
Python module is loaded at runtime.
* guix/build-system/pyproject.scm (default-python): Default to
python-sans-pip-wrapper.
Change-Id: I2d986c2225114f54459dd6bb360913106e52cdf4
Diffstat (limited to 'gnu/packages/fontutils.scm')
-rw-r--r-- | gnu/packages/fontutils.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index df448de973..d5b3cb6286 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -532,7 +532,8 @@ converts any cubic curves to quadratic. The most useful function is probably (sha256 (base32 "1rg2997af8blvswlwif0kpz2vxrlh555gzqslz6yv9y7i7v8lphl")))) (build-system pyproject-build-system) - (native-inputs (list python-pytest python-setuptools-scm)) + (native-inputs (list python-pytest python-setuptools-scm + python-setuptools python-wheel)) (propagated-inputs (list python-booleanoperations python-cffsubr @@ -679,7 +680,8 @@ process. FontParts is the successor of RoboFab.") "--ignore=tests/builder/interpolation_test.py"))) (native-inputs (list python-setuptools-scm - + python-setuptools + python-wheel ;; For tests. python-pytest python-xmldiff)) @@ -859,6 +861,7 @@ suite of the @code{psautohint} package.") python-pytest-cov python-pytest-xdist python-setuptools-scm + python-setuptools python-wheel)) (home-page "https://github.com/adobe-type-tools/psautohint") (synopsis "Adobe's PostScript autohinter") @@ -1782,7 +1785,7 @@ with @samp{nameIDs}.") (base32 "0yx4i8q5rfyqhr2fj70a7z1bp1jv7bdlr64ww9z4nv9ycbda4x9j")))) (build-system pyproject-build-system) (native-inputs - (list python-pytest python-setuptools-scm)) + (list python-pytest python-setuptools-scm python-setuptools python-wheel)) (propagated-inputs (list python-attrs python-fonttools)) (home-page "https://github.com/fonttools/ufoLib2") (synopsis "Unified Font Object (UFO) font processing library") |