summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/exaworks/package.py
blob: fe6372ca22d5739074204f0037941db0b5d53d32 (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-2024 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 Exaworks(BundlePackage):
    """
    Virtual package for the Exaworks SDK packages.
    """

    homepage = "https://exaworks.org/"
    maintainers("andre-merzky")

    version("0.1.0")

    depends_on("stc", type=("build", "run"))

    depends_on("flux-core", type=("build", "run"))
    depends_on("flux-sched", type=("build", "run"))

    depends_on("py-parsl", type=("build", "run"))

    depends_on("py-radical-gtod", type=("build", "run"))
    depends_on("py-radical-utils", type=("build", "run"))
    depends_on("py-radical-saga", type=("build", "run"))
    depends_on("py-radical-pilot", type=("build", "run"))
    depends_on("py-radical-entk", type=("build", "run"))

    depends_on("py-psij-python", type=("build", "run"))