summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJean Luca Bez <jeanlucabez@gmail.com>2022-12-12 18:33:50 -0800
committerGitHub <noreply@github.com>2022-12-12 19:33:50 -0700
commitc62906f7818763137d4f0eeba3c90bacc2bf90b9 (patch)
treeb3801fedd997b14d8d86536b37d7e50d9b4b0978 /var
parent94bac8d6dd9140820dbde9d1dda4ea6c5736ca43 (diff)
downloadspack-c62906f7818763137d4f0eeba3c90bacc2bf90b9.tar.gz
spack-c62906f7818763137d4f0eeba3c90bacc2bf90b9.tar.bz2
spack-c62906f7818763137d4f0eeba3c90bacc2bf90b9.tar.xz
spack-c62906f7818763137d4f0eeba3c90bacc2bf90b9.zip
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>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/drishti/package.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/drishti/package.py b/var/spack/repos/builtin/packages/drishti/package.py
new file mode 100644
index 0000000000..dc35d4d652
--- /dev/null
+++ b/var/spack/repos/builtin/packages/drishti/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 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"))