3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.prompt_toolkit: 0.60 -> 1.0.0

Changes: https://raw.githubusercontent.com/jonathanslenders/python-prompt-toolkit/master/CHANGELOG
This commit is contained in:
Tobias Geerinckx-Rice 2016-05-07 22:57:37 +02:00
parent 628ac272da
commit d1b818e305
No known key found for this signature in database
GPG key ID: 91CCDB9B48541B99

View file

@ -15706,6 +15706,10 @@ in modules // {
pymysql configobj sqlparse prompt_toolkit pygments click pycrypto
];
postPatch = ''
substituteInPlace setup.py --replace "==" ">="
'';
meta = {
inherit version;
description = "Command-line interface for MySQL";
@ -16144,13 +16148,15 @@ in modules // {
prompt_toolkit = buildPythonPackage rec {
name = "prompt_toolkit-${version}";
version = "0.60";
version = "1.0.0";
src = pkgs.fetchurl {
sha256 = "0gf3vv8dmj77xv7lrpccw9k3m1bgq3m71q9s6hqp77zvyd6cqjml";
sha256 = "192fyzs0hyq0k7wxxl00jwl334l5hwwmdflhvjqqrlj0dsgfs22i";
url = "mirror://pypi/p/prompt_toolkit/${name}.tar.gz";
};
disabled = isPy35;
buildInputs = with self; [ jedi ipython pygments ];
propagatedBuildInputs = with self; [ docopt six wcwidth ];