Files
nixpkgs/pkgs/development/python-modules/clickhouse-cli/default.nix
T
Martin Weinelt 1609acb3e2 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
2023-12-20 20:10:31 +01:00

47 lines
829 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonRelaxDepsHook
, click
, prompt-toolkit
, pygments
, requests
, sqlparse
}:
buildPythonPackage rec {
pname = "clickhouse-cli";
version = "0.3.9";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-gkgLAedUtzGv/4P+D56M2Pb5YecyqyVYp06ST62sjdY=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"sqlparse"
];
propagatedBuildInputs = [
click
prompt-toolkit
pygments
requests
sqlparse
];
pythonImportsCheck = [ "clickhouse_cli" ];
meta = with lib; {
description = "A third-party client for the Clickhouse DBMS server";
homepage = "https://github.com/hatarist/clickhouse-cli";
license = licenses.mit;
maintainers = with maintainers; [ ivan-babrou ];
};
}