python310Packages.vallox-websocket-api: 3.0.0 -> 3.1.0

Diff: https://github.com/yozik04/vallox_websocket_api/compare/refs/tags/3.0.0...3.1.0

Changelog: https://github.com/yozik04/vallox_websocket_api/releases/tag/3.1.0
This commit is contained in:
Robert Schütz 2023-02-22 15:57:06 -08:00
parent 7560f8eea5
commit 1462929de0

View File

@ -5,22 +5,22 @@
, setuptools
, construct
, websockets
, asynctest
, pytest-asyncio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "vallox-websocket-api";
version = "3.0.0";
version = "3.1.0";
format = "pyproject";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "yozik04";
repo = "vallox_websocket_api";
rev = "refs/tags/${version}";
hash = "sha256-iy5ipW7ldvLWhfxgPlWcsFeKrAXqtyypveAX74u8zmo=";
hash = "sha256-JbTuBzRSgMTPSgWEEAJGc8R44VLHiMr4qocbBjpJBmk=";
};
nativeBuildInputs = [
@ -33,10 +33,12 @@ buildPythonPackage rec {
];
nativeCheckInputs = [
asynctest
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "vallox_websocket_api" ];
meta = {
description = "Async API for Vallox ventilation units";
homepage = "https://github.com/yozik04/vallox_websocket_api";