python3Packages.certbot-dns-google: init at 1.20.0
This commit is contained in:
committed by
Jonathan Ringer
parent
054bac1eca
commit
b273bce17a
@@ -0,0 +1,35 @@
|
||||
{ buildPythonPackage
|
||||
, acme
|
||||
, certbot
|
||||
, google-api-python-client
|
||||
, isPy3k
|
||||
, oauth2client
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "certbot-dns-google";
|
||||
|
||||
inherit (certbot) src version;
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
acme
|
||||
certbot
|
||||
google-api-python-client
|
||||
oauth2client
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ];
|
||||
|
||||
sourceRoot = "source/certbot-dns-google";
|
||||
|
||||
meta = certbot.meta // {
|
||||
description = "Google Cloud DNS Authenticator plugin for Certbot";
|
||||
};
|
||||
}
|
||||
@@ -1423,6 +1423,8 @@ in {
|
||||
|
||||
certbot-dns-rfc2136 = callPackage ../development/python-modules/certbot-dns-rfc2136 { };
|
||||
|
||||
certbot-dns-google = callPackage ../development/python-modules/certbot-dns-google { };
|
||||
|
||||
certbot-dns-route53 = callPackage ../development/python-modules/certbot-dns-route53 { };
|
||||
|
||||
certifi = callPackage ../development/python-modules/certifi { };
|
||||
|
||||
Reference in New Issue
Block a user