New python package: Drishti (#33316)

* 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>
This commit is contained in:
Jean Luca Bez 2022-12-12 18:33:50 -08:00 committed by GitHub
parent 94bac8d6dd
commit c62906f781
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 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"))