
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
86 lines
1.5 KiB
Nix
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";
|
|
};
|
|
}
|