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; }; }