Files
nixpkgs/pkgs/development/python-modules/clickhouse-connect/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

87 lines
1.7 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pytestCheckHook,
# build_requires
cython,
# install_requires
certifi,
importlib-metadata,
urllib3,
pytz,
zstandard,
lz4,
# extras_require
sqlalchemy,
numpy,
pandas,
pyarrow,
orjson,
# not in tests_require, but should be
pytest-dotenv,
}:
buildPythonPackage rec {
pname = "clickhouse-connect";
version = "0.8.18";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
repo = "clickhouse-connect";
owner = "ClickHouse";
tag = "v${version}";
hash = "sha256-lU35s8hldexyH8YC942r+sYm5gZCWqO2GXW0qtTTWWY=";
};
nativeBuildInputs = [ cython ];
setupPyBuildFlags = [ "--inplace" ];
enableParallelBuilding = true;
propagatedBuildInputs = [
certifi
importlib-metadata
urllib3
pytz
zstandard
lz4
];
nativeCheckInputs = [
pytestCheckHook
pytest-dotenv
]
++ optional-dependencies.sqlalchemy
++ optional-dependencies.numpy;
# these tests require a running clickhouse instance
disabledTestPaths = [
"tests/integration_tests"
];
pythonImportsCheck = [
"clickhouse_connect"
"clickhouse_connect.driverc.buffer"
"clickhouse_connect.driverc.dataconv"
"clickhouse_connect.driverc.npconv"
];
optional-dependencies = {
sqlalchemy = [ sqlalchemy ];
numpy = [ numpy ];
pandas = [ pandas ];
arrow = [ pyarrow ];
orjson = [ orjson ];
};
meta = {
description = "ClickHouse Database Core Driver for Python, Pandas, and Superset";
homepage = "https://github.com/ClickHouse/clickhouse-connect";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ cpcloud ];
};
}