0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pydevccu
|
|
, pytest-aiohttp
|
|
, pytestCheckHook
|
|
, python-slugify
|
|
, pythonOlder
|
|
, setuptools
|
|
, voluptuous
|
|
, websocket-client
|
|
, xmltodict
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hahomematic";
|
|
version = "2023.1.4";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "danielperna84";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-2xXdM4iAkr/0lAZqTSjz30/WQ+dvot7gbWfOc/wjO/4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
python-slugify
|
|
voluptuous
|
|
];
|
|
|
|
checkInputs = [
|
|
pydevccu
|
|
pytest-aiohttp
|
|
pytestCheckHook
|
|
];
|
|
|
|
# Starting with 0.30 the tests are broken, check with the next major release
|
|
doCheck = false;
|
|
|
|
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 ];
|
|
};
|
|
}
|