From b80e8539c31991d2f543b2e3db6bbeb15c35c6b7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 11 Mar 2026 19:06:48 +0000 Subject: [PATCH 1/2] python3Packages.aioairq: 0.4.7 -> 0.4.8 --- pkgs/development/python-modules/aioairq/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aioairq/default.nix b/pkgs/development/python-modules/aioairq/default.nix index 624c34b3b40f..24190a88113e 100644 --- a/pkgs/development/python-modules/aioairq/default.nix +++ b/pkgs/development/python-modules/aioairq/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "aioairq"; - version = "0.4.7"; + version = "0.4.8"; pyproject = true; src = fetchFromGitHub { owner = "CorantGmbH"; repo = "aioairq"; tag = "v${version}"; - hash = "sha256-CliY2MfkRfpOmWM70vDRxG6tY2eoaPiRFHb0qt2Kmyw="; + hash = "sha256-7hgmoFu48kYr4uonB5SOtRiQ1+Z8r2hhdqipvJN6MzU="; }; __darwinAllowLocalNetworking = true; From b80e84780fec26b97be35c9654360276c22bbd31 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 11 Mar 2026 21:20:18 +0100 Subject: [PATCH 2/2] python3Packages.aioairq: migrate to finalAttrs --- pkgs/development/python-modules/aioairq/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/aioairq/default.nix b/pkgs/development/python-modules/aioairq/default.nix index 24190a88113e..f6d0449a6504 100644 --- a/pkgs/development/python-modules/aioairq/default.nix +++ b/pkgs/development/python-modules/aioairq/default.nix @@ -9,7 +9,7 @@ setuptools, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "aioairq"; version = "0.4.8"; pyproject = true; @@ -17,7 +17,7 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "CorantGmbH"; repo = "aioairq"; - tag = "v${version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-7hgmoFu48kYr4uonB5SOtRiQ1+Z8r2hhdqipvJN6MzU="; }; @@ -45,8 +45,8 @@ buildPythonPackage rec { meta = { description = "Library to retrieve data from air-Q devices"; homepage = "https://github.com/CorantGmbH/aioairq"; - changelog = "https://github.com/CorantGmbH/aioairq/releases/tag/${src.tag}"; + changelog = "https://github.com/CorantGmbH/aioairq/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; -} +})