python312Packages.kafka-python-ng: init at 2.2.2

This commit is contained in:
Robert Schütz
2024-07-15 10:42:06 -07:00
parent 2aef9e0b3a
commit 00cc5a05ec
2 changed files with 58 additions and 0 deletions
@@ -0,0 +1,56 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
setuptools-scm,
crc32c,
lz4,
python-snappy,
zstandard,
botocore,
pytest-mock,
pytestCheckHook,
xxhash,
}:
buildPythonPackage rec {
version = "2.2.2";
pname = "kafka-python-ng";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "wbarnha";
repo = "kafka-python-ng";
rev = "refs/tags/v${version}";
hash = "sha256-ELJvcj91MQ2RTjT1dwgnTGSSG5lP6B6/45dFgtNY2Cc=";
};
build-system = [ setuptools-scm ];
passthru.optional-dependencies = {
crc32c = [ crc32c ];
lz4 = [ lz4 ];
snappy = [ python-snappy ];
zstd = [ zstandard ];
boto = [ botocore ];
};
pythonImportsCheck = [ "kafka" ];
nativeCheckInputs = [
pytest-mock
pytestCheckHook
xxhash
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
meta = {
changelog = "https://github.com/wbarnha/kafka-python-ng/releases/tag/v${version}";
description = "Pure Python client for Apache Kafka";
homepage = "https://github.com/wbarnha/kafka-python-ng";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -6446,6 +6446,8 @@ self: super: with self; {
kafka-python = callPackage ../development/python-modules/kafka-python { };
kafka-python-ng = callPackage ../development/python-modules/kafka-python-ng { };
kaggle = callPackage ../development/python-modules/kaggle { };
kaitaistruct = callPackage ../development/python-modules/kaitaistruct { };