e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
48 lines
857 B
Nix
48 lines
857 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonRelaxDepsHook
|
|
, setuptools
|
|
, 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
|
|
setuptools
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|