python3Packages.pyswitchbot: 0.72.0 -> 0.72.1 (#457280)

This commit is contained in:
dotlambda
2025-10-31 17:11:06 +00:00
committed by GitHub
@@ -15,14 +15,14 @@
buildPythonPackage rec {
pname = "pyswitchbot";
version = "0.72.0";
version = "0.72.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "pySwitchbot";
tag = version;
hash = "sha256-ouvsAZe3HeaSMdCdia+ttliKMxqNtps/TbHBkri/iaw=";
hash = "sha256-QwCeq9EnE7oKqTtb6lmMcEw37dOK7WYbDEC984NujzY=";
};
build-system = [ setuptools ];
@@ -43,12 +43,12 @@ buildPythonPackage rec {
pythonImportsCheck = [ "switchbot" ];
meta = with lib; {
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}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
platforms = platforms.linux;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
platforms = lib.platforms.linux;
};
}