Files
nixpkgs/pkgs/development/python-modules/certbot-dns-google/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
607 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
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";
};
}