diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-04-26 20:53:13 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-04-26 21:33:02 +0200 |
commit | faa4485b526db76fb1a93e83807a69c778385164 (patch) | |
tree | dad50587a3a45c68891fe4bb6e688fe6473fd91b /gnu/packages/python-xyz.scm | |
parent | d38bdca344fc3ffbde34b8efa37c7dedcebae46a (diff) | |
download | guix-faa4485b526db76fb1a93e83807a69c778385164.tar guix-faa4485b526db76fb1a93e83807a69c778385164.tar.gz |
gnu: python-fire: Add missing input.
* gnu/packages/python-xyz.scm (python-fire)[native-inputs]: Add python-mock.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d43e8f4f49..3f57880ce2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -536,8 +536,6 @@ workspaces. (base32 "0qka44n88y3qcj7xz0k0f3qb4phcg4z0wvd4jcii9lcr6rvbiqn5")))) (build-system python-build-system) - (native-inputs - (list python-pytest)) (arguments '(#:phases (modify-phases %standard-phases @@ -547,6 +545,8 @@ workspaces. (invoke "pytest"))))))) (inputs (list python-six python-termcolor)) + (native-inputs + (list python-mock python-pytest)) (synopsis "Library for automatically generating command line interfaces") (description "Fire is a library for automatically generating command line interfaces |