Merge pull request #92696 from flokli/certbot-1.6.0

certbot: 1.3.0 -> 1.6.0
This commit is contained in:
Félix Baylac-Jacqué
2020-07-09 11:55:41 +02:00
committed by GitHub
6 changed files with 113 additions and 64 deletions
@@ -0,0 +1,35 @@
{ buildPythonPackage
, acme
, certbot
, cloudflare
, isPy3k
, pytest
, pytestCheckHook
}:
buildPythonPackage rec {
inherit (certbot) src version;
pname = "certbot-dns-cloudflare";
propagatedBuildInputs = [
acme
certbot
cloudflare
];
checkInputs = [
pytest
pytestCheckHook
];
disabled = !isPy3k;
pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ];
sourceRoot = "source/${pname}";
meta = certbot.meta // {
description = "Cloudflare DNS Authenticator plugin for Certbot";
};
}
@@ -0,0 +1,35 @@
{ buildPythonPackage
, acme
, certbot
, dnspython
, isPy3k
, pytest
, pytestCheckHook
}:
buildPythonPackage rec {
inherit (certbot) src version;
pname = "certbot-dns-rfc2136";
propagatedBuildInputs = [
acme
certbot
dnspython
];
checkInputs = [
pytest
pytestCheckHook
];
disabled = !isPy3k;
pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ];
sourceRoot = "source/${pname}";
meta = certbot.meta // {
description = "RFC 2136 DNS Authenticator plugin for Certbot";
};
}
@@ -0,0 +1,35 @@
{ buildPythonPackage
, acme
, boto3
, certbot
, isPy3k
, pytest
, pytestCheckHook
}:
buildPythonPackage rec {
inherit (certbot) src version;
pname = "certbot-dns-route53";
propagatedBuildInputs = [
acme
boto3
certbot
];
checkInputs = [
pytest
pytestCheckHook
];
disabled = !isPy3k;
pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ];
sourceRoot = "source/${pname}";
meta = certbot.meta // {
description = "Route53 DNS Authenticator plugin for Certbot";
};
}