From cbf610197ff459964a87ccc51d13bcfc2ea970c1 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Mon, 5 Jan 2026 00:14:34 +0100 Subject: [PATCH] python3Packages.rich-theme-manager: use finalAttrs --- .../python-modules/rich-theme-manager/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/rich-theme-manager/default.nix b/pkgs/development/python-modules/rich-theme-manager/default.nix index b296713afb19..72a587793d71 100644 --- a/pkgs/development/python-modules/rich-theme-manager/default.nix +++ b/pkgs/development/python-modules/rich-theme-manager/default.nix @@ -7,7 +7,7 @@ pytestCheckHook, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "rich-theme-manager"; version = "0.11.0"; pyproject = true; @@ -15,7 +15,7 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "RhetTbull"; repo = "rich_theme_manager"; - tag = "v${version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-nSNG+lWOPmh66I9EmPvWqbeceY/cu+zBpgVlDTNuHc0="; }; @@ -31,4 +31,4 @@ buildPythonPackage rec { homepage = "https://github.com/RhetTbull/rich_theme_manager"; maintainers = with lib.maintainers; [ sigmanificient ]; }; -} +})