Merge pull request #218619 from fabaff/lexicon-fix

lexicon: 3.9.4 -> 3.11.7
This commit is contained in:
Fabian Affolter 2023-02-28 08:10:40 +01:00 committed by GitHub
commit 51da7d6570
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
dnspython
future
localzone
oci
pynamecheap
importlib-metadata
pyyaml
requests
softlayer
tldextract
transip
xmltodict
zeep
];
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 = [
@ -58,6 +80,7 @@ buildPythonApplication rec {
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 ];
};