Merge pull request #195360 from jojosch/mycli-update

mycli: 1.25.0 -> 1.26.1
This commit is contained in:
Mario Rodas 2022-10-14 18:42:01 -05:00 committed by GitHub
commit 10586701d9
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.25.0";
version = "1.26.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-/vEu2BJf0T7fSgSXflq56Ilaih7RAhhilZUgbNzZYQg=";
sha256 = "sha256-jAMDXJtFJtv6CwhZZU4pdKDndZKp6bJ/QPWo2q6DvrE=";
};
propagatedBuildInputs = [
@ -26,6 +26,7 @@ buildPythonApplication rec {
pygments
pymysql
pyperclip
sqlglot
sqlparse
];
@ -41,8 +42,7 @@ buildPythonApplication rec {
postPatch = ''
substituteInPlace setup.py \
--replace "sqlparse>=0.3.0,<0.4.0" "sqlparse" \
--replace "importlib_resources >= 5.0.0" "importlib_resources"
--replace "cryptography == 36.0.2" "cryptography"
'';
meta = with lib; {