mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
python312Packages.certbot-dns-cloudflare: mark as broken (#380324)
This commit is contained in:
commit
a463e0e765
1 changed files with 8 additions and 3 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue