python3Packages.holistic-trace-analysis: init at 0.5.0 (#421780)

This commit is contained in:
Silvan Mosberger
2025-09-15 11:57:37 +00:00
committed by GitHub
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{
buildPythonPackage,
fetchFromGitHub,
jupyterlab,
lib,
numpy,
pandas,
plotly,
pydot,
pytestCheckHook,
setuptools,
torch,
}:
buildPythonPackage rec {
pname = "HolisticTraceAnalysis";
version = "0.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "facebookresearch";
repo = "HolisticTraceAnalysis";
tag = "v${version}";
hash = "sha256-3DuoP9gQ0vLlAAJ2uWw/oOEH/DTbn2xulzvqk4W3BiY=";
};
build-system = [ setuptools ];
dependencies = [
jupyterlab
numpy
pandas
plotly
pydot
torch
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "hta" ];
meta = {
description = "Performance analysis tool to identify bottlenecks in distributed training workloads";
homepage = "https://github.com/facebookresearch/HolisticTraceAnalysis";
changelog = "https://github.com/facebookresearch/HolisticTraceAnalysis/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jherland ];
};
}
+2
View File
@@ -6674,6 +6674,8 @@ self: super: with self; {
holidays = callPackage ../development/python-modules/holidays { };
holistic-trace-analysis = callPackage ../development/python-modules/holistic-trace-analysis { };
hologram = callPackage ../development/python-modules/hologram { };
holoviews = callPackage ../development/python-modules/holoviews { };