gnu: python-peachpy: Fix build.

* gnu/packages/python-xyz.scm (python-peachpy)[arguments]: Invoke nosetests
directly.
[native-inputs]: Add PYTHON-SETUPTOOLS.
This commit is contained in:
Marius Bakke 2022-01-18 18:12:50 +01:00
parent 2188af8bdf
commit e31ff150f9
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -27541,9 +27541,9 @@ (define-public python-peachpy
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "python" "setup.py" "nosetests")))))))
(invoke "nosetests")))))))
(native-inputs
(list python-nose python-rednose))
(list python-nose python-rednose python-setuptools))
(propagated-inputs
(list python-six python-opcodes))
(synopsis "Efficient assembly code generation in Python")