587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
57 lines
1.1 KiB
Nix
57 lines
1.1 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
, fetchFromGitHub
|
|
, setuptools
|
|
, construct
|
|
, websockets
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "vallox-websocket-api";
|
|
version = "5.2.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yozik04";
|
|
repo = "vallox_websocket_api";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-qq58ZSrKVQ00rtXMe4L9xfz0QB+UpjGOhPo1srPYIY4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"websockets"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
construct
|
|
websockets
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "vallox_websocket_api" ];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/yozik04/vallox_websocket_api/releases/tag/${version}";
|
|
description = "Async API for Vallox ventilation units";
|
|
homepage = "https://github.com/yozik04/vallox_websocket_api";
|
|
license = lib.licenses.lgpl3Only;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|