mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
abdf5dc772
It is is now provided automatically, when `pythonRelaxDeps` or `pythonRemoveDeps` is defined through `mk-python-derivation`.
47 lines
850 B
Nix
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 ];
|
|
};
|
|
}
|