about summary refs log tree commit diff
path: root/pkgs/development/python-modules/amazon-kclpy/default.nix
blob: 3186ade26999662911f65fd50d50bd43d8b2a132 (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
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  fetchpatch,
  setuptools,
  mock,
  boto3,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "amazon-kclpy";
  version = "2.1.4";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "awslabs";
    repo = "amazon-kinesis-client-python";
    rev = "refs/tags/v${version}";
    hash = "sha256-TWIGu7WuoaPhk8cz+hMXvGLIPQ5kly8aj20ZtvTZzwg=";
  };

  patches = [
    (fetchpatch {
      name = "remove-deprecated-boto.patch";
      url = "https://github.com/awslabs/amazon-kinesis-client-python/commit/bd2c442cdd1b0e2c99d3471c1d3ffcc9161a7c42.patch";
      hash = "sha256-5W0qItDGjx1F6IllzLH57XCpToKrAu9mTbzv/1wMXuY=";
    })
  ];

  build-system = [ setuptools ];

  dependencies = [
    mock
    boto3
  ];

  pythonImportsCheck = [ "amazon_kclpy" ];

  nativeCheckInputs = [ pytestCheckHook ];

  meta = with lib; {
    description = "Amazon Kinesis Client Library for Python";
    homepage = "https://github.com/awslabs/amazon-kinesis-client-python";
    license = licenses.asl20;
    maintainers = with maintainers; [ psyanticy ];
    broken = true;
  };
}