diff options
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r-- | gnu/packages/python-check.scm | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 87e15b4560..92289cb164 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -586,7 +586,9 @@ are too large to conveniently hard-code them in the tests.") " and not test_remote_data_requires" " and not test_remote_data_ignore_warnings")))) (native-inputs - (list python-numpy python-pytest python-setuptools-scm)) + (list python-numpy python-pytest python-setuptools python-setuptools-scm + python-wheel)) + (propagated-inputs (list python-setuptools)) ;; for pkg_resources (home-page "https://github.com/astropy/pytest-doctestplus") (synopsis "Pytest plugin with advanced doctest features") (description @@ -636,7 +638,9 @@ for interactively selecting and running Pytest tests.") (list python-pytest python-pytest-cov python-pytest-doctestplus - python-setuptools-scm)) + python-setuptools-scm + python-setuptools + python-wheel)) (home-page "https://github.com/astropy/pytest-filter-subpackage") (synopsis "Pytest plugin for filtering based on sub-packages") (description @@ -749,7 +753,8 @@ were inadvertently left open at the end of a unit test.") "not test_default_behavior" " and not test_strict_with_decorator")))) (native-inputs - (list python-pytest python-setuptools-scm)) + (list python-pytest python-setuptools python-setuptools-scm + python-wheel)) (propagated-inputs (list python-packaging)) (home-page "https://github.com/astropy/pytest-remotedata") @@ -843,7 +848,9 @@ framework and makes it easy to undo any monkey patching. The fixtures are: (list #:test-flags #~(list "-m" "mpl_image_compare"))) (native-inputs - (list python-pytest)) + (list python-pytest + python-setuptools + python-wheel)) (propagated-inputs (list python-jinja2 python-matplotlib @@ -1770,7 +1777,8 @@ the implementation of that name.") (("def test_memory_profiler") "def __off_test_memory_profiler"))))))) (native-inputs - (list python-pytest python-pytest-fixture-config python-safety)) + (list python-pytest python-pytest-fixture-config python-safety + python-setuptools python-wheel)) (propagated-inputs (list python-psutil)) (home-page "https://github.com/pythonprofilers/memory_profiler") (synopsis "Memory profiler for Python") @@ -2178,7 +2186,7 @@ tests at one time.") (native-inputs (list python-pbr python-ddt python-pytest)) (propagated-inputs - (list python-aiohttp)) + (list python-aiohttp python-setuptools)) (home-page "https://github.com/pnuckowski/aioresponses") (synopsis "Mock out requests made by ClientSession from aiohttp package") (description @@ -2390,7 +2398,9 @@ which make writing and running functional and integration tests easier.") (native-inputs (list python-jinja2 python-pytest - python-tox)) + python-tox + python-setuptools + python-wheel)) (home-page "https://nox.thea.codes/") (synopsis "Flexible test automation") (description @@ -2544,7 +2554,8 @@ parametrize. This plugin allows you to use all four.") (base32 "1ncpd74hmsz4sadvjg99fnfscxpgh3mc2siini0dhxzwgwdkk5i7")))) (build-system pyproject-build-system) (propagated-inputs (list python-httpx)) - (native-inputs (list python-pytest python-pytest-asyncio)) + (native-inputs (list python-pytest python-pytest-asyncio python-setuptools + python-wheel)) (home-page "https://colin-b.github.io/pytest_httpx/") (synopsis "Pytest plugin to mock httpx") (description "This package provides a pytest fixture to mock httpx @@ -2621,7 +2632,8 @@ running acceptance tests on headless servers.") ;; skip test that uses python-pint ;; pint has many dependencies "not test_whitelists_with_python"))))))) - (native-inputs (list python-pytest python-pytest-cov)) + (native-inputs (list python-pytest python-pytest-cov + python-setuptools python-wheel)) (propagated-inputs (list python-toml)) (home-page "https://github.com/jendrikseipp/vulture") (synopsis "Find dead Python code") |