diff options
Diffstat (limited to 'gnu/packages/check.scm')
-rw-r--r-- | gnu/packages/check.scm | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 6214fceb19..ccc1aee0c5 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -1750,8 +1750,11 @@ supports coverage of subprocesses.") (sha256 (base32 "0bdxwaak5clhsd63b9q65nf2amqqv5hfn7dskfakyldxsqnnh0y6")))) (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools + python-wheel)) (propagated-inputs (list python-dotenv)) - (native-inputs (list python-pytest)) (home-page "https://github.com/quiqua/pytest-dotenv") (synopsis "Automatically detect and load a .env file before running tests") (description @@ -1874,8 +1877,15 @@ contacting the real http server.") (base32 "1gw3a33myq9yncjixs3kkcrr1xkjzvvf3xk6x955p3i79wlwkswx")))) (build-system pyproject-build-system) (arguments (list #:tests? #false)) ;no tests included - (propagated-inputs (list python-attrs python-pytest)) - (native-inputs (list python-pytest python-pytest-cov python-xmlschema)) + (native-inputs + (list python-pytest + python-pytest-cov + python-setuptools + python-wheel + python-xmlschema)) + (propagated-inputs + (list python-attrs + python-pytest)) (home-page "https://github.com/pytest-dev/pytest-nunit") (synopsis "Pytest plugin for generating NUnit3 test result XML output") (description @@ -3075,12 +3085,15 @@ mypy plugins.") python-pytest-cov python-pytest-enabler python-pytest-flake8 - python-pytest-mypy)) + python-pytest-mypy + python-setuptools + python-wheel)) (propagated-inputs (list python-jaraco-context python-jaraco-functools python-more-itertools python-packaging + python-pip python-pip-run python-tempora)) (home-page "https://github.com/jaraco/pytest-perf") |