diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-08-05 00:12:17 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-08-05 00:31:26 +0200 |
commit | 240d3ceff78464a160d099adfb6463f4f17d6616 (patch) | |
tree | 44dda071eed8a214fbcb958e677b27f71ee5888a /gnu/packages | |
parent | 90ea83ee95ad467fc4a49f4c42d0df94d2952330 (diff) | |
download | guix-240d3ceff78464a160d099adfb6463f4f17d6616.tar guix-240d3ceff78464a160d099adfb6463f4f17d6616.tar.gz |
gnu: python-argcomplete: Add dependency on the full Bash.
Fixes a regression introduced in
704243e0c6ec5ac86e2f45aaa469717e60b89124.
* gnu/packages/python.scm (python-argcomplete)[native-inputs]: Add BASH.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index ee2743b028..f8300a1752 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -13500,7 +13500,8 @@ specs from your Flask-Restful projects.") (build-system python-build-system) (native-inputs `(("python-pexpect" ,python-pexpect) - ("tcsh" ,tcsh))) + ("tcsh" ,tcsh) + ("bash-full" ,bash))) ;full Bash for 'test_file_completion' (home-page "https://github.com/kislyuk/argcomplete") (synopsis "Shell tab completion for Python argparse") (description "argcomplete provides extensible command line tab completion |