diff options
author | Ricardo Wurmus <[email protected]> | 2024-11-13 18:16:18 +0100 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2024-11-18 20:19:42 +0000 |
commit | 968726d89fea8a9aa514049ee1b953f375b62a46 (patch) | |
tree | 41a7b9653ce57f70107cdd34e5882b18e2ba87cc /gnu | |
parent | bab9607827a7b845979b76712096ac138805ef2e (diff) |
gnu: awscli-2: Add missing inputs.
* gnu/packages/python-web.scm (awscli-2)[native-inputs]: Add
python-poetry-core and python-pytest.
Change-Id: Ia0d160eca47f9e39ba902481c7146ad85b848c2a
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-web.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index ba689a8a98..a80d037bdf 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -4217,7 +4217,10 @@ Services (AWS) API.") '(#:tests? #f)) (inputs (list python-importlib-resources - python-executor)))) + python-executor)) + (native-inputs + (list python-poetry-core + python-pytest)))) (define-public python-wsgiproxy2 |