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

86 lines
1.5 KiB
Nix

{
lib,
aiohttp,
asyncclick,
buildPythonPackage,
cryptography,
fetchFromGitHub,
hatchling,
kasa-crypt,
mashumaro,
orjson,
ptpython,
pytest-asyncio,
pytest-freezer,
pytest-mock,
pytest-socket,
pytest-xdist,
pytestCheckHook,
pythonOlder,
rich,
voluptuous,
}:
buildPythonPackage rec {
pname = "python-kasa";
version = "0.10.2";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "python-kasa";
repo = "python-kasa";
tag = version;
hash = "sha256-OIkqNGTnIPoHYrE5NhAxSsRCTyMGvNADvIg28EuKsEw=";
};
build-system = [ hatchling ];
dependencies = [
aiohttp
asyncclick
cryptography
mashumaro
];
nativeCheckInputs = [
pytest-asyncio
pytest-freezer
pytest-mock
pytest-socket
pytest-xdist
pytestCheckHook
voluptuous
];
optional-dependencies = {
shell = [
ptpython
rich
];
speedups = [
kasa-crypt
orjson
];
};
pytestFlags = [ "--asyncio-mode=auto" ];
disabledTestPaths = [
# Skip the examples tests
"tests/test_readme_examples.py"
];
pythonImportsCheck = [ "kasa" ];
meta = with lib; {
description = "Python API for TP-Link Kasa Smarthome products";
homepage = "https://python-kasa.readthedocs.io/";
changelog = "https://github.com/python-kasa/python-kasa/blob/${version}/CHANGELOG.md";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ fab ];
mainProgram = "kasa";
};
}