From d5df9c589ebf2f60c91debfd3ad70bbca7c97939 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 25 Jan 2026 14:18:22 +0000 Subject: [PATCH 1/2] python3Packages.pydevccu: 0.1.20 -> 0.1.21 --- pkgs/development/python-modules/pydevccu/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pydevccu/default.nix b/pkgs/development/python-modules/pydevccu/default.nix index 73bf92fd7646..ebcab7466389 100644 --- a/pkgs/development/python-modules/pydevccu/default.nix +++ b/pkgs/development/python-modules/pydevccu/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "pydevccu"; - version = "0.1.20"; + version = "0.1.21"; pyproject = true; disabled = pythonOlder "3.13"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "SukramJ"; repo = "pydevccu"; tag = version; - hash = "sha256-DqXekG5WyXuEwn4lmsTBzRxlGBHGWFXOh3Mg/u9O7X8="; + hash = "sha256-RroFOnGOU7JDpe2mv44jKhyduT4jg8ySYtdhhPrSfvw="; }; postPatch = '' From 6464c7c1e8b3ab9f83d894094c481b5aa54612f9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 25 Jan 2026 15:43:46 +0100 Subject: [PATCH 2/2] python313Packages.pydevccu: migrate to finalAttrs --- pkgs/development/python-modules/pydevccu/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pydevccu/default.nix b/pkgs/development/python-modules/pydevccu/default.nix index ebcab7466389..5d3c56fabcc3 100644 --- a/pkgs/development/python-modules/pydevccu/default.nix +++ b/pkgs/development/python-modules/pydevccu/default.nix @@ -7,7 +7,7 @@ setuptools, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "pydevccu"; version = "0.1.21"; pyproject = true; @@ -17,7 +17,7 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "SukramJ"; repo = "pydevccu"; - tag = version; + tag = finalAttrs.version; hash = "sha256-RroFOnGOU7JDpe2mv44jKhyduT4jg8ySYtdhhPrSfvw="; }; @@ -40,8 +40,8 @@ buildPythonPackage rec { meta = { description = "HomeMatic CCU XML-RPC Server with fake devices"; homepage = "https://github.com/SukramJ/pydevccu"; - changelog = "https://github.com/SukramJ/pydevccu/releases/tag/${src.tag}"; + changelog = "https://github.com/SukramJ/pydevccu/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; -} +})