* Bazaar: depend on readline.

svn path=/nixpkgs/branches/modular-python/; revision=26581
This commit is contained in:
Eelco Dolstra 2011-03-28 16:48:02 +00:00
parent 47adaa80e3
commit 0a7b7374ac
2 changed files with 2 additions and 5 deletions

View File

@ -12,7 +12,8 @@ stdenv.mkDerivation rec {
buildInputs = [ python wrapPython ];
pythonPath = [ pythonPackages.ssl ];
# Readline support is needed by bzrtools.
pythonPath = [ pythonPackages.ssl pythonPackages.readline ];
installPhase = ''
python setup.py install --prefix=$out

View File

@ -1,9 +1,5 @@
args : with args;
if ! bazaar.python.readlineSupport then
throw "Bazaar Tools require readline support in python."
else
rec {
version = "2.2.0";
src = fetchurl {