From 3617c2f3f9da0eeb08e54aec6295247aaa6226e8 Mon Sep 17 00:00:00 2001 From: Tristan Ross Date: Fri, 5 Jun 2026 15:17:50 -0700 Subject: [PATCH] tt-flash: 3.6.0 -> 3.8.0 --- .../python-modules/tt-flash/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/tt-flash/default.nix b/pkgs/development/python-modules/tt-flash/default.nix index 3d3503f5f5da..429f91f52a91 100644 --- a/pkgs/development/python-modules/tt-flash/default.nix +++ b/pkgs/development/python-modules/tt-flash/default.nix @@ -9,16 +9,17 @@ pyluwen, tt-tools-common, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "tt-flash"; - version = "3.6.0"; + version = "3.8.0"; pyproject = true; + __structuredAttrs = true; src = fetchFromGitHub { owner = "tenstorrent"; repo = "tt-flash"; - tag = "v${version}"; - hash = "sha256-io3+fNQWS1Gxb0L0HcQQocOT+ROjQUk4mw7xG3om7oU="; + tag = "v${finalAttrs.version}"; + hash = "sha256-p1NzR53n9f4nVQXHDxTlbtqYVTL/5/ZSqkM3ldozsME="; }; build-system = [ @@ -33,7 +34,10 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "tt_flash" ]; - pythonRelaxDeps = [ "pyyaml" ]; + pythonRelaxDeps = [ + "pyyaml" + "tabulate" + ]; meta = { description = "Tenstorrent Firmware Update Utility"; @@ -41,4 +45,4 @@ buildPythonPackage rec { maintainers = with lib.maintainers; [ RossComputerGuy ]; license = with lib.licenses; [ asl20 ]; }; -} +})