From 9f34c83f272d6ec392a1c3dc1ebeb41f36fea2f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 31 Oct 2025 09:36:36 -0700 Subject: [PATCH] python3Packages.denonavr: 1.1.2 -> 1.2.0 Diff: https://github.com/ol-iver/denonavr/compare/1.1.2...1.2.0 Changelog: https://github.com/ol-iver/denonavr/releases/tag/1.2.0 --- pkgs/development/python-modules/denonavr/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/denonavr/default.nix b/pkgs/development/python-modules/denonavr/default.nix index 957cce7a860d..b1b338c707c6 100644 --- a/pkgs/development/python-modules/denonavr/default.nix +++ b/pkgs/development/python-modules/denonavr/default.nix @@ -19,18 +19,16 @@ buildPythonPackage rec { pname = "denonavr"; - version = "1.1.2"; + version = "1.2.0"; pyproject = true; src = fetchFromGitHub { owner = "ol-iver"; repo = "denonavr"; tag = version; - hash = "sha256-r8Gg7mZwEiSq1iFQJXLb9xCb/iYxTbaCKGBH2EDZQqs="; + hash = "sha256-/GhlSZhl4VAl0em3QLolSRS0wZQeOhhF+B/91ohqVPw="; }; - pythonRelaxDeps = [ "defusedxml" ]; - build-system = [ setuptools ]; dependencies = [ @@ -52,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "denonavr" ]; - meta = with lib; { + meta = { description = "Automation Library for Denon AVR receivers"; homepage = "https://github.com/ol-iver/denonavr"; changelog = "https://github.com/ol-iver/denonavr/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; }