python312Packages.aioshelly: 11.4.2 -> 12.0.1

Changelog: https://github.com/home-assistant-libs/aioshelly/releases/tag/12.0.1
This commit is contained in:
Fabian Affolter 2024-10-30 09:25:41 +01:00 committed by Martin Weinelt
parent 36dd3d5662
commit 7aa60361f4
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,6 +1,7 @@
{
lib,
aiohttp,
aioresponses,
bluetooth-data-tools,
buildPythonPackage,
fetchFromGitHub,
@ -15,7 +16,7 @@
buildPythonPackage rec {
pname = "aioshelly";
version = "11.4.2";
version = "12.0.1";
pyproject = true;
disabled = pythonOlder "3.11";
@ -24,7 +25,7 @@ buildPythonPackage rec {
owner = "home-assistant-libs";
repo = "aioshelly";
rev = "refs/tags/${version}";
hash = "sha256-aJA+iE8cyUPrL2n72N8/HI8//h0qR6k/hgD34vpwI+0=";
hash = "sha256-DO3y3tn+hsrTQfiBj3DtQG19SvIbXN7MuVPKlyZ4vP0=";
};
build-system = [ setuptools ];
@ -38,6 +39,7 @@ buildPythonPackage rec {
];
nativeCheckInputs = [
aioresponses
pytest-asyncio
pytestCheckHook
];
@ -48,7 +50,7 @@ buildPythonPackage rec {
description = "Python library to control Shelly";
homepage = "https://github.com/home-assistant-libs/aioshelly";
changelog = "https://github.com/home-assistant-libs/aioshelly/releases/tag/${version}";
license = with licenses; [ asl20 ];
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}