about summary refs log tree commit diff
path: root/pkgs/tools/admin/lexicon/default.nix
blob: c17f751274167a8f0e02e2f0296630c2acb2b51b (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
76
77
78
79
80
81
82
83
84
85
86
87
{ lib
, python3
, fetchFromGitHub
}:

with python3.pkgs;

buildPythonApplication rec {
  pname = "lexicon";
  version = "3.11.7";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "AnalogJ";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-TySgIxBEl2RolndAkEN4vCIDKaI48vrh2ocd+CTn7Ow=";
  };

  nativeBuildInputs = [
    poetry-core
  ];

  propagatedBuildInputs = [
    beautifulsoup4
    cryptography
    importlib-metadata
    pyyaml
    requests
    tldextract
  ];

  passthru.optional-dependencies = {
    route53 = [
      boto3
    ];
    localzone = [
      localzone
    ];
    softlayer = [
      softlayer
    ];
    gransy = [
      zeep
    ];
    ddns = [
      dnspython
    ];
    oci = [
      oci
    ];
    full = [
      boto3
      dnspython
      localzone
      oci
      softlayer
      zeep
    ];
  };

  nativeCheckInputs = [
    mock
    pytestCheckHook
    pytest-xdist
    vcrpy
  ] ++ passthru.optional-dependencies.full;

  disabledTestPaths = [
    # Tests require network access
    "lexicon/tests/providers/test_auto.py"
    # Tests require an additional setup
    "lexicon/tests/providers/test_localzone.py"
  ];

  pythonImportsCheck = [
    "lexicon"
  ];

  meta = with lib; {
    description = "Manipulate DNS records of various DNS providers in a standardized way";
    homepage = "https://github.com/AnalogJ/lexicon";
    changelog = "https://github.com/AnalogJ/lexicon/blob/v${version}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ flyfloh ];
  };
}