tools-common: Use version needed by tt-smi

This commit is contained in:
Artturin 2025-01-29 19:32:57 +02:00
parent 31f0cee50d
commit f18aa5fee2
2 changed files with 5 additions and 2 deletions

View file

@ -4,6 +4,8 @@ let
# Upstream does not vendor a lock file so one has to created manually
# `cargo generate-lockfile`
# Use verson needed by tt-smi
# https://github.com/tenstorrent/tt-smi/blob/main/pyproject.toml#L30
version = "0.4.9";
src = pkgs.fetchFromGitHub {

View file

@ -4,13 +4,14 @@ with pkgs.python3Packages;
buildPythonPackage rec {
pname = "tools-common";
version = "1.4.12";
# https://github.com/tenstorrent/tt-smi/blob/main/pyproject.toml#L31
version = "1.4.11";
src = pkgs.fetchFromGitHub {
owner = "tenstorrent";
repo = "tt-tools-common";
rev = "refs/tags/v${version}";
sha256 = "sha256-FKV1ojY9m5aRfnrU6LjXVcUnNAmNNXiGaUax6RE/8Vs=";
sha256 = "sha256-Q5GpT6B3pamY6bUjPbvNJ11npiR4q/6QMjRxovQ/MZ0=";
};
format = "pyproject";