python3Packages.certbot-nginx: fix build with certbot 5.6.0

This commit is contained in:
Harinn 2026-05-28 20:53:34 +09:00
commit 20c65e5616

View file

@ -1,9 +1,7 @@
{
buildPythonPackage,
acme,
certbot,
pyparsing,
pytestCheckHook,
setuptools,
}:
@ -18,16 +16,13 @@ buildPythonPackage rec {
build-system = [ setuptools ];
dependencies = [
acme
certbot
pyparsing
];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlags = [
"-pno:cacheprovider"
"-Wignore::DeprecationWarning"
pythonImportsCheck = [
"certbot_nginx"
"certbot.plugins.nginx"
];
meta = certbot.meta // {