472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
85 lines
1.5 KiB
Nix
85 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
async-timeout,
|
|
asyncclick,
|
|
buildPythonPackage,
|
|
cryptography,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
kasa-crypt,
|
|
orjson,
|
|
ptpython,
|
|
pydantic,
|
|
pytest-asyncio,
|
|
pytest-freezer,
|
|
pytest-mock,
|
|
pytest-socket,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
rich,
|
|
voluptuous,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-kasa";
|
|
version = "0.7.4";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "python-kasa";
|
|
repo = "python-kasa";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-dzDbA/iJUfTQNKq2V1PlCYpIeg031Fm0JyZvHrDWqHI=";
|
|
};
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
async-timeout
|
|
asyncclick
|
|
cryptography
|
|
pydantic
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytest-freezer
|
|
pytest-mock
|
|
pytest-socket
|
|
pytestCheckHook
|
|
voluptuous
|
|
];
|
|
|
|
optional-dependencies = {
|
|
shell = [
|
|
ptpython
|
|
rich
|
|
];
|
|
speedups = [
|
|
kasa-crypt
|
|
orjson
|
|
];
|
|
};
|
|
|
|
pytestFlagsArray = [ "--asyncio-mode=auto" ];
|
|
|
|
disabledTestPaths = [
|
|
# Skip the examples tests
|
|
"kasa/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";
|
|
};
|
|
}
|