mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: python-ufo2ft: Don't use pytest-runner.
pytest-runner is deprecated and does not work properly with the newer setuptools in Python 3.10 for this package. * gnu/packages/fontutils.scm (python-ufo2ft)[arguments]: Override check phase. [native-inputs]: Remove PYTHON-PYTEST-RUNNER.
This commit is contained in:
parent
5811d876c3
commit
6c3ccc6b1f
1 changed files with 8 additions and 1 deletions
|
@ -447,8 +447,15 @@ (define-public python-ufo2ft
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "068hm62s1iphyg66w96vgiif6ahpcsaf8fr44rk6jdf71f6fyqd5"))))
|
(base32 "068hm62s1iphyg66w96vgiif6ahpcsaf8fr44rk6jdf71f6fyqd5"))))
|
||||||
(build-system python-build-system)
|
(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
|
(native-inputs
|
||||||
(list python-pytest python-pytest-runner python-setuptools-scm))
|
(list python-pytest python-setuptools-scm))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-booleanoperations
|
(list python-booleanoperations
|
||||||
python-cffsubr
|
python-cffsubr
|
||||||
|
|
Loading…
Reference in a new issue