fix: mycli requires prompt_toolkit to be pegged at 0.45

This commit is contained in:
Rehno Lindeque 2015-08-23 06:23:40 +00:00
parent 0cf852b78b
commit a3e688030e

View file

@ -9451,7 +9451,7 @@ let
};
propagatedBuildInputs = with self; [
pymysql configobj sqlparse prompt_toolkit pygments click
pymysql configobj sqlparse prompt_toolkit0_45 pygments click
];
meta = {
@ -9807,6 +9807,32 @@ let
};
};
prompt_toolkit0_45 = buildPythonPackage rec {
name = "prompt_toolkit-${version}";
version = "0.45";
src = pkgs.fetchurl {
sha256 = "19lp15rc0rq4jqaacg2a38cdgfy2avhf5v97yanasx4n2swx4gsm";
url = "https://pypi.python.org/packages/source/p/prompt_toolkit/${name}.tar.gz";
};
buildInputs = with self; [ jedi ipython pygments ];
propagatedBuildInputs = with self; [ docopt six wcwidth ];
meta = {
description = "Python library for building powerful interactive command lines";
longDescription = ''
prompt_toolkit could be a replacement for readline, but it can be
much more than that. It is cross-platform, everything that you build
with it should run fine on both Unix and Windows systems. Also ships
with a nice interactive Python shell (called ptpython) built on top.
'';
homepage = https://github.com/jonathanslenders/python-prompt-toolkit;
license = licenses.bsd3;
maintainers = with maintainers; [ nckx ];
};
};
protobuf = self.protobuf2_6;
protobuf2_6 = self.protobufBuild pkgs.protobuf2_6;
protobuf2_5 = self.protobufBuild pkgs.protobuf2_5;