From 8b876d5e1126f647b76c668095444de157027fe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 31 Oct 2025 08:34:14 -0700 Subject: [PATCH] python3Packages.pyswitchbot: 0.72.0 -> 0.72.1 Diff: https://github.com/Danielhiversen/pySwitchbot/compare/0.72.0...0.72.1 Changelog: https://github.com/Danielhiversen/pySwitchbot/releases/tag/0.72.1 --- .../python-modules/pyswitchbot/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/pyswitchbot/default.nix b/pkgs/development/python-modules/pyswitchbot/default.nix index b231fd1d0980..fbbd3e713495 100644 --- a/pkgs/development/python-modules/pyswitchbot/default.nix +++ b/pkgs/development/python-modules/pyswitchbot/default.nix @@ -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; }; }