5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
64 lines
1.1 KiB
Nix
64 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
async-timeout,
|
|
buildPythonPackage,
|
|
cython,
|
|
fetchFromGitHub,
|
|
gssapi,
|
|
kafka-python,
|
|
lz4,
|
|
packaging,
|
|
python-snappy,
|
|
pythonOlder,
|
|
setuptools,
|
|
zlib,
|
|
zstandard,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiokafka";
|
|
version = "0.10.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aio-libs";
|
|
repo = "aiokafka";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-G9Q77nWUUW+hG/wm9z/S8gea4U1wHZdj7WdK2LsKBos=";
|
|
};
|
|
|
|
build-system = [
|
|
cython
|
|
setuptools
|
|
];
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
dependencies = [
|
|
async-timeout
|
|
kafka-python
|
|
packaging
|
|
];
|
|
|
|
optional-dependencies = {
|
|
snappy = [ python-snappy ];
|
|
lz4 = [ lz4 ];
|
|
zstd = [ zstandard ];
|
|
gssapi = [ gssapi ];
|
|
};
|
|
|
|
# Checks require running Kafka server
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "aiokafka" ];
|
|
|
|
meta = with lib; {
|
|
description = "Kafka integration with asyncio";
|
|
homepage = "https://aiokafka.readthedocs.org";
|
|
changelog = "https://github.com/aio-libs/aiokafka/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|