mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
mycli: 1.23.2 -> 1.24.1
This commit is contained in:
parent
f5f6dc053b
commit
b39c189d4b
1 changed files with 6 additions and 3 deletions
|
@ -7,19 +7,21 @@ with python3.pkgs;
|
|||
|
||||
buildPythonApplication rec {
|
||||
pname = "mycli";
|
||||
version = "1.23.2";
|
||||
version = "1.24.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-auGbFAvwLR7aDChhgeNZPZPNGJo+b9Q4TFDaOrmU2zI=";
|
||||
sha256 = "sha256-dI2Yvj2llI9TlMFbs35ijYeFuGqoTovZyRh+ILhNMmY=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cli-helpers
|
||||
click
|
||||
configobj
|
||||
importlib-resources
|
||||
paramiko
|
||||
prompt_toolkit
|
||||
pyaes
|
||||
pycrypto
|
||||
pygments
|
||||
pymysql
|
||||
|
@ -39,7 +41,8 @@ buildPythonApplication rec {
|
|||
|
||||
postPatch = ''
|
||||
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; {
|
||||
|
|
Loading…
Reference in a new issue