python3Packages.certbot-dns-ovh: init at 2.6.0 (follows certbot)

This commit is contained in:
Antoine Viallon 2023-09-15 23:02:31 +02:00
parent f99f2a1a48
commit ae98fb4f90
No known key found for this signature in database
GPG Key ID: 186FC35EDEB25716
3 changed files with 44 additions and 1 deletions

View File

@ -0,0 +1,39 @@
{ buildPythonPackage
, acme
, certbot
, dns-lexicon
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "certbot-dns-ovh";
inherit (certbot) src version;
disabled = pythonOlder "3.6";
sourceRoot = "${src.name}/certbot-dns-ovh";
propagatedBuildInputs = [
acme
certbot
dns-lexicon
];
nativeCheckInputs = [
pytestCheckHook
];
pytestFlagsArray = [
"-o cache_dir=$(mktemp -d)"
# Monitor https://github.com/certbot/certbot/issues/9606 for a solution
"-W 'ignore:pkg_resources is deprecated as an API:DeprecationWarning'"
"-W 'ignore:Package lexicon.providers is deprecated and will be removed in Lexicon 4>=.:DeprecationWarning'"
"-W 'ignore:Legacy configuration object has been used to load the ConfigResolver.:DeprecationWarning'"
];
meta = certbot.meta // {
description = "OVH DNS Authenticator plugin for Certbot";
};
}

View File

@ -2732,6 +2732,9 @@
"certbot-dns-inwx": [
"setuptools"
],
"certbot-dns-ovh": [
"setuptools"
],
"certbot-dns-rfc2136": [
"setuptools"
],

View File

@ -1853,8 +1853,9 @@ self: super: with self; {
certbot-dns-inwx = callPackage ../development/python-modules/certbot-dns-inwx { };
certbot-dns-rfc2136 = callPackage ../development/python-modules/certbot-dns-rfc2136 { };
certbot-dns-ovh = callPackage ../development/python-modules/certbot-dns-ovh { };
certbot-dns-rfc2136 = callPackage ../development/python-modules/certbot-dns-rfc2136 { };
certbot-dns-route53 = callPackage ../development/python-modules/certbot-dns-route53 { };