blob: f7f9d7a27ccacdcd3c3c76de303478ea9988f84e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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 ];
};
}
|