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
45
46
47
48
49
50
51
52
53
|
{
lib,
buildPythonPackage,
fetchpatch,
fetchFromGitHub,
setuptools,
distro,
elasticsearch,
psutil,
pyyaml,
rich,
textual,
requests,
tqdm,
pydantic,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "tt-tools-common";
version = "1.4.28";
pyproject = true;
src = fetchFromGitHub {
owner = "tenstorrent";
repo = "tt-tools-common";
tag = "v${version}";
hash = "sha256-L7MYrzQXb0LakQCx5CMlgTo0EjBoLLKC8u38eXksvoo=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
distro
elasticsearch
psutil
pyyaml
rich
textual
requests
tqdm
pydantic
];
meta = {
description = "Helper library for common utilities shared across Tentorrent tools";
homepage = "https://github.com/tenstorrent/tt-tools-common";
maintainers = with lib.maintainers; [ RossComputerGuy ];
license = with lib.licenses; [ asl20 ];
};
}
|