tt-flake/pkgs/smi/default.nix

44 lines
631 B
Nix
Raw Normal View History

2024-10-01 18:41:35 +00:00
{
pkgs,
pyluwen,
tools-common,
}:
2024-01-31 05:20:40 +00:00
with pkgs.python3Packages;
buildPythonPackage rec {
pname = "tt-smi";
version = "main-01-31-24";
src = pkgs.fetchFromGitHub {
owner = "tenstorrent";
repo = "tt-smi";
rev = "2071978";
hash = "sha256-sqwGWeeMBxOyHiVI2GcQ5CyZ8Zaty7FjhkS0C7H7QkM=";
};
format = "pyproject";
2024-10-01 18:41:35 +00:00
patches = [
./pyproject.patch
./log.patch
];
2024-01-31 05:20:40 +00:00
2024-10-01 18:41:35 +00:00
propagatedBuildInputs = [
setuptools
requests
textual
black
distro
elasticsearch
jsons
pydantic
psutil
pyyaml
pyluwen
importlib-resources
pkgs.pre-commit
tools-common
];
2024-01-31 05:20:40 +00:00
}