Files
nixpkgs/pkgs/development/python-modules/clickhouse-driver/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

78 lines
1.5 KiB
Nix

{
lib,
buildPythonPackage,
clickhouse-cityhash,
cython,
fetchFromGitHub,
freezegun,
lz4,
mock,
pytestCheckHook,
pytest-xdist,
pytz,
setuptools,
tzlocal,
zstd,
}:
buildPythonPackage rec {
pname = "clickhouse-driver";
version = "0.2.10";
format = "setuptools";
# pypi source doesn't contain tests
src = fetchFromGitHub {
owner = "mymarilyn";
repo = "clickhouse-driver";
rev = version;
hash = "sha256-veFkmXAp8b6/Npt7f1EhMfM9OKlLugKtlXS+zMHWAro=";
};
nativeBuildInputs = [
cython
setuptools
];
propagatedBuildInputs = [
clickhouse-cityhash
lz4
pytz
tzlocal
zstd
];
nativeCheckInputs = [
freezegun
mock
pytest-xdist
pytestCheckHook
];
postPatch = ''
substituteInPlace setup.py \
--replace "lz4<=3.0.1" "lz4<=4"
'';
# remove source to prevent pytest testing source instead of the build artifacts
# (the source doesn't contain the extension modules)
preCheck = ''
rm -rf clickhouse_driver
'';
# some test in test_buffered_reader.py doesn't seem to return
disabledTestPaths = [ "tests/test_buffered_reader.py" ];
# most tests require `clickhouse`
# TODO: enable tests after `clickhouse` unbroken
doCheck = false;
pythonImportsCheck = [ "clickhouse_driver" ];
meta = {
description = "Python driver with native interface for ClickHouse";
homepage = "https://github.com/mymarilyn/clickhouse-driver";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ breakds ];
};
}