From 5eeb03141c423999ad500fedc25cbf579765627e Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Thu, 31 Oct 2024 17:06:01 +0100 Subject: [PATCH] python3Packages.certbot-dns-inwx: fix broken pytestImportsCheck This surely was intended to be an imports check, judging by the content of the list. Setting pytestCheckHook like that surely makes no sense. --- pkgs/development/python-modules/certbot-dns-inwx/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/certbot-dns-inwx/default.nix b/pkgs/development/python-modules/certbot-dns-inwx/default.nix index 08c83c264bca..81b20f23ff79 100644 --- a/pkgs/development/python-modules/certbot-dns-inwx/default.nix +++ b/pkgs/development/python-modules/certbot-dns-inwx/default.nix @@ -24,7 +24,7 @@ buildPythonPackage rec { # Doesn't have any tests doCheck = false; - pytestCheckHook = [ "certbot_dns_inwx" ]; + pytestImportsCheck = [ "certbot_dns_inwx" ]; meta = with lib; { description = "INWX DNS Authenticator plugin for Certbot";