python312Packages.certbot-dns-cloudflare: mark as broken (#380324)

This commit is contained in:
Fabian Affolter 2025-02-14 00:36:43 +01:00 committed by GitHub
commit a463e0e765
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,18 +5,21 @@
cloudflare,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "certbot-dns-cloudflare";
format = "setuptools";
pyproject = true;
inherit (certbot) src version;
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.9";
sourceRoot = "${src.name}/certbot-dns-cloudflare";
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
acme
certbot
cloudflare
@ -34,5 +37,7 @@ buildPythonPackage rec {
meta = certbot.meta // {
description = "Cloudflare DNS Authenticator plugin for Certbot";
# https://github.com/certbot/certbot/pull/10182
broken = true;
};
}