python311Packages.clickhouse-cli: relax sqlparse constraint

Checking runtime dependencies for clickhouse_cli-0.3.9-py3-none-any.whl
  - sqlparse<0.4.4,>=0.2.2 not satisifeid by version 0.4.4
This commit is contained in:
Martin Weinelt
2023-12-20 20:10:31 +01:00
parent 29504f7693
commit 1609acb3e2
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonRelaxDepsHook
, click
, prompt-toolkit
, pygments
@@ -18,6 +19,14 @@ buildPythonPackage rec {
hash = "sha256-gkgLAedUtzGv/4P+D56M2Pb5YecyqyVYp06ST62sjdY=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"sqlparse"
];
propagatedBuildInputs = [
click
prompt-toolkit