summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/drishti/package.py
blob: 0ca327352d481c56b00e854372dfcf1e01de0dff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright 2013-2023 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-io"
    git = "https://github.com/hpc-io/drishti-io"
    pypi = "drishti-io/drishti-io-0.4.tar.gz"

    maintainers("jeanbez", "sbyna")

    license("BSD-3-Clause-LBNL")

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