Yueh-Shun Li 76e2a397c2 treewide: pytestFlagsArray -> pytestFlags and join flag and option argument
This treewide change targets Python packages
that specifies pytest flags with pytestFlagsArray,
and whose flags cannot be consructed by other pytestCheckHook-honoured arguments.

Use the __structuredAttrs-agnostic argument pytestFlags
instead of the deprecated pytestFlagsArray.

For flags with option arguments,
join each flag and their option argument into a single command-line argument
following POSIX Utility Argument Syntax[1]
for easier overriding (remove/replace).

Examples:

* [ "-W" "ignore:message:WarningClass" ] ->
  [ "-Wignore:message:WarningClass" ]

* [ "--reruns" "3" ] ->
  [ "--reruns=3" ]

[1]: https://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html
2025-06-16 01:02:16 +08:00

38 lines
670 B
Nix

{
buildPythonPackage,
acme,
certbot,
dnspython,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "certbot-dns-rfc2136";
format = "setuptools";
inherit (certbot) src version;
disabled = pythonOlder "3.6";
sourceRoot = "${src.name}/certbot-dns-rfc2136";
propagatedBuildInputs = [
acme
certbot
dnspython
];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlags = [
"-pno:cacheprovider"
# Monitor https://github.com/certbot/certbot/issues/9606 for a solution
"-Wignore::DeprecationWarning"
];
meta = certbot.meta // {
description = "RFC 2136 DNS Authenticator plugin for Certbot";
};
}