python3.pkgs.certbot-dns-route53: init at 1.6.0

This commit is contained in:
Florian Klink 2020-07-08 13:02:02 +02:00
parent 9b4364d703
commit b9d97f313b
2 changed files with 37 additions and 0 deletions

View file

@ -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";
};
}

View file

@ -581,6 +581,8 @@ in {
certbot-dns-cloudflare = callPackage ../development/python-modules/certbot-dns-cloudflare { };
certbot-dns-route53 = callPackage ../development/python-modules/certbot-dns-route53 { };
cfn-flip = callPackage ../development/python-modules/cfn-flip { };
chalice = callPackage ../development/python-modules/chalice { };