diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-02-26 23:29:18 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:30 +0000 |
commit | 332ae4deda16f39dd03145f0b8181ffc085d4a17 (patch) | |
tree | 4c2073176989f5eb0f7ea0615dcd8c40ae927d59 /gnu/packages/python-check.scm | |
parent | 6f76ab84ba2c26599c47d1138ccad2dcc4f404ab (diff) |
gnu: Add setuptools/wheel to more Python packages.
* gnu/packages/python-check.scm (python-beartype,
python-pytest-csv)[native-inputs]: Add python-setuptools and python-wheel.
* gnu/packages/python-xyz.scm (python-watchdog, python-xyzservices,
python-zeroconf)[native-inputs]: Same.
Change-Id: Ifac6402da7447a95f4f8fca8d475e87c001bd583
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r-- | gnu/packages/python-check.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index a640f7c2de..e63df4d981 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -155,8 +155,7 @@ data in a standard way.") "-k" (string-append "not test_doc_readme " "and not test_sphinx " "and not test_pep561_mypy")))) - (native-inputs - (list python-pytest)) + (native-inputs (list python-pytest python-setuptools python-wheel)) (home-page "https://github.com/beartype/beartype") (synopsis "Fast runtime type checking for Python") (description "Beartype aims to be a very fast runtime type checking tool @@ -219,7 +218,11 @@ tests in cram.") "17518f2fn5l98lyk9p8r7215c1whi61imzrh6ahrmcksr8w0zz04")))) (build-system pyproject-build-system) (native-inputs - (list python-pytest-flake8 python-pytest-xdist python-tabulate)) + (list python-pytest-flake8 + python-pytest-xdist + python-setuptools + python-tabulate + python-wheel)) (propagated-inputs (list python-pytest python-six)) (home-page "https://github.com/nicoulaj/pytest-csv") |