diff options
author | Jean Luca Bez <jeanlucabez@gmail.com> | 2022-10-10 10:49:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-10 11:49:58 -0600 |
commit | 0835b69771e0990c56281a1b36847f725adbf7da (patch) | |
tree | e86ca8ba48d845831effae12febd4a483d908842 | |
parent | d886700de50bb7f4e21e522041d1f79e86ff7187 (diff) | |
download | spack-0835b69771e0990c56281a1b36847f725adbf7da.tar.gz spack-0835b69771e0990c56281a1b36847f725adbf7da.tar.bz2 spack-0835b69771e0990c56281a1b36847f725adbf7da.tar.xz spack-0835b69771e0990c56281a1b36847f725adbf7da.zip |
New package: DXT Explorer tool (#31007)
* DXT Explorer tool
* Remove comments
* Fix style
* Syntax change
* Fix syntax
* remove dependencies, update version number, fix recipe
* fix syntax
* fixes
* change version order
-rw-r--r-- | var/spack/repos/builtin/packages/dxt-explorer/package.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/dxt-explorer/package.py b/var/spack/repos/builtin/packages/dxt-explorer/package.py new file mode 100644 index 0000000000..08b3f49aaa --- /dev/null +++ b/var/spack/repos/builtin/packages/dxt-explorer/package.py @@ -0,0 +1,30 @@ +# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack.package import * + + +class DxtExplorer(PythonPackage): + """ + DXT Explorer is an interactive web-based log analysis tool to visualize + Darshan DXT logs and help understand the I/O behavior of applications. + """ + + homepage = "http://dxt-explorer.readthedocs.io" + git = "https://github.com/hpc-io/dxt-explorer" + pypi = "dxt-explorer/dxt-explorer-0.3.tar.gz" + + maintainers = ["jeanbez", "sbyna"] + + version("develop", branch="develop") + + version("0.3", sha256="fb73947b737c327154d03eeb0744c86774263878b893b365094ce4af8ac60b8b") + + depends_on("r", type=("run")) + + depends_on("darshan-util", type=("run")) + + depends_on("python@3.6:", type=("build", "run")) + depends_on("py-pandas", type=("build", "run")) |