This commit is contained in:
ziguana 2024-01-30 22:20:40 -07:00
commit 0e4e4b0979
19 changed files with 3185 additions and 0 deletions

21
pkgs/flash/default.nix Normal file
View file

@ -0,0 +1,21 @@
{ pkgs, pyluwen }:
with pkgs.python3Packages;
buildPythonPackage rec {
pname = "tt-flash";
version = "main-01-31-24";
src = pkgs.fetchFromGitHub {
owner = "tenstorrent";
repo = "tt-flash";
rev = "09db4103efe0c63adc3ea6e61f19eac7eb06d46f";
hash = "sha256-fNAP/XuPdn51TtBEelSjh93NgMiyP1j6RqjnrzX9dc4=";
};
format = "pyproject";
# patches = [ ./pyproject.patch ./log.patch ];
propagatedBuildInputs = [ setuptools pyyaml pyluwen tabulate ]; #requests textual black distro elasticsearch jsons pydantic psutil pyyaml pyluwen importlib-resources pkgs.pre-commit tools-common ];
}