3e7541c14f
GitOrigin-RevId: ff377a78794d412a35245e05428c8f95fef3951f
49 lines
890 B
Nix
49 lines
890 B
Nix
{ lib
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pydevccu
|
|
, pytest-aiohttp
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, voluptuous
|
|
, websocket-client
|
|
, xmltodict
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hahomematic";
|
|
version = "0.13.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "danielperna84";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-9dR0qYoHVovD4fwJz6v+/RItMuqr2vA9YHn0nMGHUX0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
voluptuous
|
|
];
|
|
|
|
checkInputs = [
|
|
pydevccu
|
|
pytest-aiohttp
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"hahomematic"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python module to interact with HomeMatic devices";
|
|
homepage = "https://github.com/danielperna84/hahomematic";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|