about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiokafka/default.nix
blob: cddfbc9295d4b75ff92b6dbf84682a7c107bee07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{ 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 = with maintainers; [ ];
  };
}