From f6f98cf496b11cf10fad6b948caaf6111c3aaf6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 31 Mar 2026 15:54:33 -0700 Subject: [PATCH] python3Packages.lunatone-rest-api-client: 0.7.2 -> 0.9.2 Diff: https://gitlab.com/lunatone-public/lunatone-rest-api-client/-/compare/v0.7.2...v0.9.2 Changelog: https://gitlab.com/lunatone-public/lunatone-rest-api-client/-/blob/v0.9.2/CHANGELOG.md --- .../python-modules/lunatone-rest-api-client/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/lunatone-rest-api-client/default.nix b/pkgs/development/python-modules/lunatone-rest-api-client/default.nix index 88bf20c2da58..59ad42258f26 100644 --- a/pkgs/development/python-modules/lunatone-rest-api-client/default.nix +++ b/pkgs/development/python-modules/lunatone-rest-api-client/default.nix @@ -1,5 +1,6 @@ { aiohttp, + awesomeversion, buildPythonPackage, fetchFromGitLab, hatchling, @@ -12,20 +13,21 @@ buildPythonPackage rec { pname = "lunatone-rest-api-client"; - version = "0.7.2"; + version = "0.9.2"; pyproject = true; src = fetchFromGitLab { owner = "lunatone-public"; repo = "lunatone-rest-api-client"; tag = "v${version}"; - hash = "sha256-x9L65L5wEbJMOGlNBoQfPjS8/Ijr+fzaISoDD+cMWzU="; + hash = "sha256-hUc2cMZ2OWheqDQjg6A7mEZw0RrljestouPr1WdOl7Q="; }; build-system = [ hatchling ]; dependencies = [ aiohttp + awesomeversion pydantic ] ++ aiohttp.optional-dependencies.speedups;