08bb76a88d
Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.8.11...2023.8.12 Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.8.12
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, orjson
|
|
, pydevccu
|
|
, pytest-aiohttp
|
|
, pytestCheckHook
|
|
, python-slugify
|
|
, pythonOlder
|
|
, setuptools
|
|
, voluptuous
|
|
, websocket-client
|
|
, xmltodict
|
|
, wheel
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hahomematic";
|
|
version = "2023.8.12";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "danielperna84";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-sP8X6YWNPut0chIj5izdPDbSlwTWXJECbK+pGfucnek=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
orjson
|
|
python-slugify
|
|
voluptuous
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pydevccu
|
|
pytest-aiohttp
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"hahomematic"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python module to interact with HomeMatic devices";
|
|
homepage = "https://github.com/danielperna84/hahomematic";
|
|
changelog = "https://github.com/danielperna84/hahomematic/releases/tag/${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|