summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2017-07-24 17:24:17 +0200
committerLudovic Courtès <ludo@gnu.org>2017-07-24 17:24:17 +0200
commitdc4f697f01848019b61ead5e548a4a7aa1a5d97c (patch)
tree7fd0a22bfbf4304b105b7df16c8b5e9dcfe5302c /gnu/packages
parent3e6add96c52fc6c92acc9bb5da3eb5a208c90a67 (diff)
gnu: python-pexpect: Add dependency on the full Bash.
Fixes a regression introduced in 704243e0c6ec5ac86e2f45aaa469717e60b89124. * gnu/packages/python.scm (python-pexpect)[native-inputs]: Add BASH.
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index e9196b949e..c903de4c36 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -5237,7 +5237,8 @@ cluster without needing to write any wrapper code yourself.")
`(("python-nose" ,python-nose)
("python-pytest" ,python-pytest-3.0)
("man-db" ,man-db)
- ("which" ,which)))
+ ("which" ,which)
+ ("bash-full" ,bash))) ;full Bash for 'test_replwrap.py'
(propagated-inputs
`(("python-ptyprocess" ,python-ptyprocess)))
(home-page "http://pexpect.readthedocs.org/")