Merge pull request #91927 from jojosch/mycli-1.21.1

mycli: 1.20.1 -> 1.21.1
This commit is contained in:
Maximilian Bosch 2020-07-03 00:33:48 +02:00 committed by GitHub
commit 83eb5ed90c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,11 +7,11 @@ with python3.pkgs;
buildPythonApplication rec {
pname = "mycli";
version = "1.20.1";
version = "1.21.1";
src = fetchPypi {
inherit pname version;
sha256 = "0vhwaqkx4njarm0wy8zg2hvzr2yl92y8gnwipcn7p59sazw4whfl";
sha256 = "1q9p0yik9cpvpxjs048anvhicfcna84mpl7axv9bwgr48w40lqwg";
};
propagatedBuildInputs = [
@ -27,6 +27,12 @@ buildPythonApplication rec {
py.test
'';
# TODO: remove with next release
postPatch = ''
substituteInPlace setup.py \
--replace "prompt_toolkit>=2.0.6,<3.0.0" "prompt_toolkit"
'';
meta = {
inherit version;
description = "Command-line interface for MySQL";