python3Packages.tt-flash: init at 3.3.3

This commit is contained in:
Tristan Ross
2025-08-14 21:25:20 -07:00
parent b44db68d42
commit f0e1c35a3b
2 changed files with 46 additions and 0 deletions
@@ -0,0 +1,44 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
setuptools,
pyyaml,
tabulate,
pyluwen,
tt-tools-common,
}:
buildPythonPackage rec {
pname = "tt-flash";
version = "3.3.3";
pyproject = true;
src = fetchFromGitHub {
owner = "tenstorrent";
repo = "tt-flash";
tag = "v${version}";
hash = "sha256-edWogH/HZZlGwyiqGbj6vunNxhsCr/+3LzmFgFGzjck=";
};
build-system = [
setuptools
];
dependencies = [
tabulate
pyyaml
pyluwen
tt-tools-common
];
pythonImportsCheck = [ "tt_flash" ];
pythonRelaxDeps = [ "pyyaml" ];
meta = {
description = "Tenstorrent Firmware Update Utility";
homepage = "https://tenstorrent.com";
maintainers = with lib.maintainers; [ RossComputerGuy ];
license = with lib.licenses; [ asl20 ];
};
}
+2
View File
@@ -18499,6 +18499,8 @@ self: super: with self; {
tsplib95 = callPackage ../development/python-modules/tsplib95 { };
tt-flash = callPackage ../development/python-modules/tt-flash { };
tt-tools-common = callPackage ../development/python-modules/tt-tools-common { };
ttach = callPackage ../development/python-modules/ttach { };