Unverified Commit f0e1c35a authored by Tristan Ross's avatar Tristan Ross
Browse files

python3Packages.tt-flash: init at 3.3.3

parent b44db68d
Loading
Loading
Loading
Loading
+44 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };