
* include Drishti * fix syntax * Update var/spack/repos/builtin/packages/drishti/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Update package.py * Update var/spack/repos/builtin/packages/drishti/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
# 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 Drishti(PythonPackage):
|
|
"""
|
|
Drishti is a command-line tool to guide end-users in optimizing I/O in their applications
|
|
by detecting typical I/O performance pitfalls and providing a set of recommendations.
|
|
"""
|
|
|
|
homepage = "https://github.com/hpc-io/drishti"
|
|
git = "https://github.com/hpc-io/drishti"
|
|
pypi = "drishti-io/drishti-io-0.4.tar.gz"
|
|
|
|
maintainers = ["jeanbez", "sbyna"]
|
|
|
|
version("master", branch="master")
|
|
|
|
version("0.4", sha256="bbbb272b4f6f44ae762f6cba28a2c589e15608691c559af0cc2f552590335d7b")
|
|
|
|
depends_on("darshan-util", type=("run"))
|
|
|
|
depends_on("python@3.6:", type=("build", "run"))
|
|
depends_on("py-pandas", type=("build", "run"))
|
|
depends_on("py-rich@12.5.1", type=("build", "run"))
|
|
depends_on("py-darshan", type=("build", "run"))
|