Files
nixpkgs/pkgs/development/python-modules/clickhouse-connect/default.nix
T
Robert Schütz 1a04744f74 treewide: remove superfluous disabled
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:

    pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
    for f in $(find -name '*.nix'); do
        grep -q "$pattern" "$f" || continue
        sed -i "/$pattern/d" "$f"
        if [ $(grep -c pythonOlder "$f") == 1 ]; then
            sed -i '/^\s*pythonOlder,\s*$/d' "$f"
        fi
        nixfmt "$f"
    done
2026-01-11 09:34:20 -08:00

84 lines
1.6 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
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";
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 ];
};
}