python312Packages.kafka-python-ng: init at 2.2.2
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user