Commit a2a49666 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

lexicon: 3.9.4 -> 3.11.7

Diff: AnalogJ/lexicon@refs/tags/v3.9.4...v3.11.7

Changelog: https://github.com/AnalogJ/lexicon/blob/v3.11.7/CHANGELOG.md
parent c6f109bb
Loading
Loading
Loading
Loading
+35 −13
Original line number Diff line number Diff line
@@ -7,13 +7,13 @@ with python3.pkgs;

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

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

@@ -23,32 +23,54 @@ buildPythonApplication rec {

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

  passthru.optional-dependencies = {
    route53 = [
      boto3
    ];
    localzone = [
      localzone
    ];
    softlayer = [
      softlayer
    ];
    gransy = [
      zeep
    ];
    ddns = [
      dnspython
    ];
    oci = [
      oci
    ];
    full = [
      boto3
      dnspython
    future
      localzone
      oci
    pynamecheap
    pyyaml
    requests
      softlayer
    tldextract
    transip
    xmltodict
      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 = [