mycli: 1.29.2 -> 1.31.2

Diff: https://github.com/dbcli/mycli/compare/refs/tags/v1.29.2...refs/tags/v1.31.2
This commit is contained in:
emaryn
2025-05-10 08:27:05 +08:00
parent 0cc343a5bd
commit 7c0fe96efa
+6 -3
View File
@@ -7,17 +7,20 @@
python3Packages.buildPythonApplication rec {
pname = "mycli";
version = "1.29.2";
version = "1.31.2";
pyproject = true;
src = fetchFromGitHub {
owner = "dbcli";
repo = "mycli";
tag = "v${version}";
hash = "sha256-d90HJszhnYDxFkvLmTkt/LZ6XctcBjgKBoMUD3m+Sdw=";
hash = "sha256-s5PzWrxG2z0sOyQIyACLkG7dau+MHYLtLNLig6UfuCs=";
};
pythonRelaxDeps = [ "sqlparse" ];
pythonRelaxDeps = [
"sqlparse"
"click"
];
build-system = with python3Packages; [
setuptools