mycli: 1.20.1 -> 1.21.1

This commit is contained in:
Johannes Schleifenbaum 2020-07-01 12:30:23 +02:00
parent deb220a55d
commit 247a1b4851
No known key found for this signature in database
GPG key ID: 059093B1A278BCD0

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";