summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-maestrowf/package.py
blob: 587d2e77b4faee78439e2ca263e28b0a5db43f2b (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# 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 PyMaestrowf(PythonPackage):
    """A general purpose workflow conductor for running multi-step
    simulation studies."""

    homepage = "https://github.com/LLNL/maestrowf/"
    pypi = "maestrowf/maestrowf-1.1.8.tar.gz"
    git = "https://github.com/LLNL/maestrowf/"
    tags = ["radiuss"]

    maintainers("FrankD412")

    # git branches
    version("develop", branch="develop")
    version("master", branch="master")

    # Development versions
    version("1.1.9dev1", tag="1.1.9dev1")

    # Pre-release candidates
    version("1.1.7dev0", sha256="bcef838f13da396dd33cc7f503655de7a8f16ee5fe7b1e2a553044334a03f1f0")

    # pypi releases
    version(
        "1.1.8",
        sha256="fa8f8eb8dd3adfb9646d7b0dfd498a00423d2131adbc8dbc8016c4159b2ec1d5",
        preferred=True,
    )
    version("1.1.7", sha256="ff1b6696f30254b105fcadd297ad437c0c666ebc70124b231a713b89f47f4e94")
    version("1.1.6", sha256="9812e67d9bd83c452cc99d82fbceb3017b5e36dafdf52eda939748bad4a88756")
    version("1.1.4", sha256="6603b93494e8e9d939a4ab40ecdfe7923a85960a8a8bddea4734e230d8144016")
    version("1.1.3", sha256="9812e67d9bd83c452cc99d82fbceb3017b5e36dafdf52eda939748bad4a88756")
    version("1.1.2", sha256="6998ba2c6ee4ef205c6d47d98cf35d5eaa184e1e859cc41b4120e2aa12c06df3")
    version("1.1.1", sha256="689ed42ba1fb214db0594756ff6015e466470103f726a5e5bf4d21c1086ad2b1")
    version("1.1.0", sha256="1bfec546831f2ef577d7823bb50dcd12622644dad0d3d761998eafd0905b6977")
    version("1.0.1", sha256="dd42ffeac1f0492a576c630b37e5d3593273e59664407f2ebf78d49322d37146")

    depends_on("python@2.7:2.8,3.5:", type=("build", "run"))
    depends_on("python@3.6:", type=("build", "run"), when="@1.1.9:")
    depends_on("py-setuptools", type=("build"), when="@:1.1.8")
    depends_on("py-poetry@0.12:", type=("build"), when="@1.1.9:")
    depends_on("py-cryptography@:2", type=("build"))
    depends_on("py-pyyaml@4.2:", type=("build", "run"))
    depends_on("py-six", type=("build", "run"))
    depends_on("py-tabulate", type=("build", "run"), when="@1.1.0:")
    depends_on("py-filelock", type=("build", "run"), when="@1.1.0:")
    depends_on("py-coloredlogs", type=("build", "run"), when="@1.1.7:")
    depends_on("py-dill", type=("build", "run"), when="@1.1.7:")
    depends_on("py-jsonschema@3.2.0:", type=("build", "run"), when="@1.1.7:")