python3Packages.aioshelly: 13.25.0 -> 13.26.1

https://github.com/home-assistant-libs/aioshelly/releases/tag/13.26.1
This commit is contained in:
Martin Weinelt
2026-06-04 16:31:22 +02:00
parent 270410f541
commit c298975cf2
@@ -15,16 +15,16 @@
zeroconf,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "aioshelly";
version = "13.25.0";
version = "13.26.1";
pyproject = true;
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "aioshelly";
tag = version;
hash = "sha256-BZsuvYtP2tuRb3QGN09lwTXadMKqM1TLPKEQU5+qz6w=";
tag = finalAttrs.version;
hash = "sha256-mOqHHgyx1Eevhr8BHkfFQa7g6x7vt9KJe4E72fr9HPg=";
};
build-system = [ setuptools ];
@@ -50,8 +50,8 @@ buildPythonPackage rec {
meta = {
description = "Python library to control Shelly";
homepage = "https://github.com/home-assistant-libs/aioshelly";
changelog = "https://github.com/home-assistant-libs/aioshelly/releases/tag/${src.tag}";
changelog = "https://github.com/home-assistant-libs/aioshelly/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})