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

66 lines
1.3 KiB
Nix

{
lib,
behave,
buildPythonPackage,
fetchFromGitHub,
lxml,
mock,
pyparsing,
pytestCheckHook,
pythonOlder,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "python-docx";
version = "1.1.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "python-openxml";
repo = "python-docx";
tag = "v${version}";
hash = "sha256-isxMtq5j5J02GcHMzOJdJw+ZokLoxA6fG1xsN21Irbc=";
};
build-system = [ setuptools ];
dependencies = [
lxml
typing-extensions
];
nativeCheckInputs = [
behave
mock
pyparsing
pytestCheckHook
];
postCheck = ''
behave --format progress --stop --tags=-wip
'';
pythonImportsCheck = [ "docx" ];
disabledTests = [
# https://github.com/python-openxml/python-docx/issues/1302
"it_accepts_unicode_providing_there_is_no_encoding_declaration"
];
pytestFlags = [
"-Wignore::DeprecationWarning"
];
meta = with lib; {
description = "Create and update Microsoft Word .docx files";
homepage = "https://python-docx.readthedocs.io/";
changelog = "https://github.com/python-openxml/python-docx/blob/v${version}/HISTORY.rst";
license = licenses.mit;
maintainers = with maintainers; [ alexchapman ];
};
}