python3Packages.clickhouse-connect: init at 0.6.8

This commit is contained in:
Phillip Cloud 2023-07-26 06:23:23 -04:00
parent f036bc3fcc
commit eaf3b3deb3
No known key found for this signature in database
GPG key ID: D908212070FD785E
2 changed files with 87 additions and 0 deletions

View file

@ -0,0 +1,85 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
### build_requires
, cython_3
### 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.6.8";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
repo = "clickhouse-connect";
owner = "ClickHouse";
rev = "v${version}";
hash = "sha256-T1vUXhOngPvA4wrg5jVzIiqj0B0gEnk/BS5OdopHgkA=";
};
nativeBuildInputs = [ cython_3 ];
setupPyBuildFlags = [ "--inplace" ];
enableParallelBuilding = true;
propagatedBuildInputs = [
certifi
importlib-metadata
urllib3
pytz
zstandard
lz4
];
nativeCheckInputs = [ pytestCheckHook pytest-dotenv ]
++ passthru.optional-dependencies.sqlalchemy
++ passthru.optional-dependencies.numpy;
# these tests require a running clickhouse instance
pytestFlagsArray = [
"--deselect=tests/integration_tests"
"--deselect=tests/tls"
];
pythonImportsCheck = [
"clickhouse_connect"
"clickhouse_connect.driverc.buffer"
"clickhouse_connect.driverc.dataconv"
"clickhouse_connect.driverc.npconv"
];
passthru = {
optional-dependencies = {
sqlalchemy = [ sqlalchemy ];
numpy = [ numpy ];
pandas = [ pandas ];
arrow = [ pyarrow ];
orjson = [ orjson ];
};
};
meta = with lib; {
description = "ClickHouse Database Core Driver for Python, Pandas, and Superset";
homepage = "https://github.com/ClickHouse/clickhouse-connect";
license = licenses.asl20;
maintainers = with maintainers; [ cpcloud ];
};
}

View file

@ -1993,6 +1993,8 @@ self: super: with self; {
clickhouse-cli = callPackage ../development/python-modules/clickhouse-cli { };
clickhouse-connect = callPackage ../development/python-modules/clickhouse-connect { };
clickhouse-driver = callPackage ../development/python-modules/clickhouse-driver { };
cliff = callPackage ../development/python-modules/cliff { };