Files
nixpkgs/pkgs/development/python-modules/certbot-dns-google/default.nix
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

37 lines
607 B
Nix

{
buildPythonPackage,
acme,
certbot,
google-api-python-client,
google-auth,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "certbot-dns-google";
inherit (certbot) src version;
pyproject = true;
sourceRoot = "${src.name}/certbot-dns-google";
build-system = [ setuptools ];
dependencies = [
acme
certbot
google-api-python-client
google-auth
];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlags = [
"-pno:cacheprovider"
];
meta = certbot.meta // {
description = "Google Cloud DNS Authenticator plugin for Certbot";
};
}