about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycognito/default.nix
blob: fc601fca868d16a9f5e8eba621a706283ec3bb4d (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
{
  lib,
  boto3,
  buildPythonPackage,
  envs,
  fetchFromGitHub,
  freezegun,
  mock,
  moto,
  pyjwt,
  pytestCheckHook,
  pythonOlder,
  requests,
  requests-mock,
  setuptools,
}:

buildPythonPackage rec {
  pname = "pycognito";
  version = "2024.5.1";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "pvizeli";
    repo = "pycognito";
    rev = "refs/tags/${version}";
    hash = "sha256-U23fFLru4j6GnWMcYtsCW9BVJkVcCoefPH6oMijYGew=";
  };

  build-system = [ setuptools ];

  dependencies = [
    boto3
    envs
    pyjwt
    requests
  ] ++ pyjwt.optional-dependencies.crypto;

  nativeCheckInputs = [
    freezegun
    mock
    moto
    pytestCheckHook
    requests-mock
  ] ++ moto.optional-dependencies.cognitoidp;

  pytestFlagsArray = [ "tests.py" ];

  disabledTests = [
    # Test requires network access
    "test_srp_requests_http_auth"
  ];

  pythonImportsCheck = [ "pycognito" ];

  meta = with lib; {
    description = "Python class to integrate Boto3's Cognito client so it is easy to login users. With SRP support";
    homepage = "https://github.com/pvizeli/pycognito";
    changelog = "https://github.com/NabuCasa/pycognito/releases/tag/${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ mic92 ];
  };
}