python3Packages.tt-flash: init at 3.3.3

Changed files
+46
pkgs
development
python-modules
tt-flash
top-level
+44
pkgs/development/python-modules/tt-flash/default.nix
···
+
{
+
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
pkgs/top-level/python-packages.nix
···
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 { };