blob: d3a19d066350d85bbae103de64c26da51a2f8ca5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
buildPythonPackage,
acme,
certbot,
google-api-python-client,
google-auth,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "certbot-dns-google";
inherit (certbot) src version;
pyproject = true;
sourceRoot = "${src.name}/certbot-dns-google";
build-system = [ setuptools ];
dependencies = [
acme
certbot
google-api-python-client
google-auth
];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlags = [
"-pno:cacheprovider"
];
meta = certbot.meta // {
description = "Google Cloud DNS Authenticator plugin for Certbot";
};
}
|