451776f476
Diff: https://github.com/SukramJ/aiohomematic/compare/2026.1.50...2026.1.54 Changelog: https://github.com/SukramJ/aiohomematic/blob/2026.1.54/changelog.md
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
freezegun,
|
|
orjson,
|
|
pydantic,
|
|
pydevccu,
|
|
pytest-asyncio,
|
|
pytest-socket,
|
|
pytest-xdist,
|
|
pytestCheckHook,
|
|
python-slugify,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiohomematic";
|
|
version = "2026.1.54";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SukramJ";
|
|
repo = "aiohomematic";
|
|
tag = version;
|
|
hash = "sha256-EAdadToeqT3H65kSWboCrzUogK38whDEzbuA3C6wmoo=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
orjson
|
|
pydantic
|
|
python-slugify
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
freezegun
|
|
pydevccu
|
|
pytest-asyncio
|
|
pytest-xdist
|
|
pytest-socket
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "aiohomematic" ];
|
|
|
|
meta = {
|
|
description = "Module to interact with HomeMatic devices";
|
|
homepage = "https://github.com/SukramJ/aiohomematic";
|
|
changelog = "https://github.com/SukramJ/aiohomematic/blob/${src.tag}/changelog.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
dotlambda
|
|
fab
|
|
];
|
|
};
|
|
}
|