From 89dac9a64dc3b04a79457b9a85067962676f9a7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 2 Feb 2026 14:50:13 -0800 Subject: [PATCH] python3Packages.lunatone-rest-api-client: 0.6.0 -> 0.6.3 Diff: https://gitlab.com/lunatone-public/lunatone-rest-api-client/-/compare/v0.6.0...0.6.3 Changelog: https://gitlab.com/lunatone-public/lunatone-rest-api-client/-/blob/v0.6.3/CHANGELOG.md --- .../python-modules/lunatone-rest-api-client/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 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 5f91cf2e06b8..8ddd33ad1248 100644 --- a/pkgs/development/python-modules/lunatone-rest-api-client/default.nix +++ b/pkgs/development/python-modules/lunatone-rest-api-client/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "lunatone-rest-api-client"; - version = "0.6.0"; + version = "0.6.3"; pyproject = true; src = fetchFromGitLab { owner = "lunatone-public"; repo = "lunatone-rest-api-client"; tag = "v${version}"; - hash = "sha256-kPvHyabiT+Vl+/yCGQxyD16HPoOKsL7ij3c0LO3qNe8="; + hash = "sha256-KP+i5TmvCkdyIiuGiP9H8GmRC2+/r7QCqmzD+/2+tU8="; }; build-system = [ hatchling ]; @@ -27,7 +27,8 @@ buildPythonPackage rec { dependencies = [ aiohttp pydantic - ]; + ] + ++ aiohttp.optional-dependencies.speedups; pythonImportsCheck = [ "lunatone_rest_api_client" ];