Files
nixpkgs/pkgs/development/python-modules/clickhouse-cli/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

49 lines
897 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 = "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 ];
};
}