python3.pkgs.certbot-dns-rfc2136: init at 1.6.0
This commit is contained in:
parent
b9d97f313b
commit
ee9123ddb9
@ -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";
|
||||||
|
};
|
||||||
|
}
|
@ -581,6 +581,8 @@ in {
|
|||||||
|
|
||||||
certbot-dns-cloudflare = callPackage ../development/python-modules/certbot-dns-cloudflare { };
|
certbot-dns-cloudflare = callPackage ../development/python-modules/certbot-dns-cloudflare { };
|
||||||
|
|
||||||
|
certbot-dns-rfc2136 = callPackage ../development/python-modules/certbot-dns-rfc2136 { };
|
||||||
|
|
||||||
certbot-dns-route53 = callPackage ../development/python-modules/certbot-dns-route53 { };
|
certbot-dns-route53 = callPackage ../development/python-modules/certbot-dns-route53 { };
|
||||||
|
|
||||||
cfn-flip = callPackage ../development/python-modules/cfn-flip { };
|
cfn-flip = callPackage ../development/python-modules/cfn-flip { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user