nixpkgs/pkgs/development/python-modules/clickhouse-cli/default.nix
Martin Weinelt abdf5dc772
treewide: remove pythonRelaxDepsHook references
It is is now provided automatically, when `pythonRelaxDeps` or
`pythonRemoveDeps` is defined through `mk-python-derivation`.
2024-06-14 14:52:00 +02:00

47 lines
850 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
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 = [
setuptools
];
pythonRelaxDeps = [ "sqlparse" ];
propagatedBuildInputs = [
click
prompt-toolkit
pygments
requests
sqlparse
];
pythonImportsCheck = [ "clickhouse_cli" ];
meta = with lib; {
description = "Third-party client for the Clickhouse DBMS server";
mainProgram = "clickhouse-cli";
homepage = "https://github.com/hatarist/clickhouse-cli";
license = licenses.mit;
maintainers = with maintainers; [ ivan-babrou ];
};
}