python313Packages.pyswitchbot: 0.75.0 -> 0.76.0 (#478503)

This commit is contained in:
Fabian Affolter
2026-01-10 01:14:08 +00:00
committed by GitHub
@@ -12,16 +12,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pyswitchbot";
version = "0.75.0";
version = "0.76.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "pySwitchbot";
tag = version;
hash = "sha256-fC5DVY3nGFJQg2uDfXqWjIgzr+pKLzt8mvX2azWCopM=";
tag = finalAttrs.version;
hash = "sha256-t5ij86Nq5BQONizKRFPeNyleFo7n4RD9pEglLPhS+Gk=";
};
build-system = [ setuptools ];
@@ -44,9 +44,9 @@ buildPythonPackage rec {
meta = {
description = "Python library to control Switchbot IoT devices";
homepage = "https://github.com/Danielhiversen/pySwitchbot";
changelog = "https://github.com/Danielhiversen/pySwitchbot/releases/tag/${src.tag}";
changelog = "https://github.com/Danielhiversen/pySwitchbot/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
platforms = lib.platforms.linux;
};
}
})