diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-09 10:39:02 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:38 +0100 |
commit | 247ab0a786d9e062fbce56ef7956c198a8cd54bb (patch) | |
tree | e8378d1f72e05014d07cbdc03626c5a8140095da | |
parent | 145b1c253ea936ae53338b6e40cfb8a520d5f0e8 (diff) |
gnu: python-pytest-tornado5: Add missing inputs.
* gnu/packages/check.scm (python-pytest-tornado5)[native-inputs]: Add
python-setuptools and python-wheel.
Change-Id: I0b64ac5f3e50893cb3fab518c9779d2cd7b9c6a9
-rw-r--r-- | gnu/packages/check.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 9fbc1de8df..fc8aa34298 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -24,7 +24,7 @@ ;;; Copyright © 2017, 2019 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2017, 2019 Kei Kebreau <kkebreau@posteo.net> ;;; Copyright © 2017 Nikita <nikita@n0.is> -;;; Copyright © 2015, 2017, 2018, 2020, 2021, 2023, 2024 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2015, 2017, 2018, 2020, 2021, 2023, 2024, 2025 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2016-2022 Marius Bakke <marius@gnu.org> ;;; Copyright © 2017-2018, 2020-2021, 2024 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com> @@ -4329,6 +4329,7 @@ data.") ;; Tests require pytest < 6 (list #:tests? #f)) (propagated-inputs (list python-pytest python-tornado)) + (native-inputs (list python-setuptools python-wheel)) (home-page "https://github.com/vidartf/pytest-tornado") (synopsis "Fixtures and markers to simplify testing of Tornado applications") |