mycli: 1.23.2 -> 1.24.1

This commit is contained in:
Johannes Schleifenbaum 2021-03-05 09:09:51 +01:00
parent f5f6dc053b
commit b39c189d4b
No known key found for this signature in database
GPG Key ID: 059093B1A278BCD0

View File

@ -7,19 +7,21 @@ with python3.pkgs;
buildPythonApplication rec { buildPythonApplication rec {
pname = "mycli"; pname = "mycli";
version = "1.23.2"; version = "1.24.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-auGbFAvwLR7aDChhgeNZPZPNGJo+b9Q4TFDaOrmU2zI="; sha256 = "sha256-dI2Yvj2llI9TlMFbs35ijYeFuGqoTovZyRh+ILhNMmY=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
cli-helpers cli-helpers
click click
configobj configobj
importlib-resources
paramiko paramiko
prompt_toolkit prompt_toolkit
pyaes
pycrypto pycrypto
pygments pygments
pymysql pymysql
@ -39,7 +41,8 @@ buildPythonApplication rec {
postPatch = '' postPatch = ''
substituteInPlace setup.py \ substituteInPlace setup.py \
--replace "sqlparse>=0.3.0,<0.4.0" "sqlparse" --replace "sqlparse>=0.3.0,<0.4.0" "sqlparse" \
--replace "importlib_resources >= 5.0.0" "importlib_resources"
''; '';
meta = with lib; { meta = with lib; {