summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-cwltool/package.py
blob: b3aa3d286a2274426993c231b6e3ef05bd41b6c9 (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
# 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 PyCwltool(PythonPackage):
    """Common workflow language reference implementation"""

    homepage = "https://github.com/common-workflow-language/cwltool"
    pypi = "cwltool/cwltool-3.1.20221201130942.tar.gz"

    license("Apache-2.0")

    version(
        "3.1.20221201130942",
        sha256="0152d8cdf6acaf3620f557b442941f577bff2851d9e2e866e6051ea48a37bdbe",
    )
    version(
        "3.1.20221109155812",
        sha256="82676ea315ce84fc4057d92c040af15dde3e897527ea4ae70c1033b0eca20c2a",
    )
    version(
        "3.1.20211107152837",
        sha256="ae1cd4626b5330457b1a62bcb2580f36f530264a80222f2cc17cf65899ebf04e",
    )

    depends_on("python@3.6:3", type=("build", "run"))
    depends_on("py-setuptools", type="build")

    depends_on("py-requests@2.6.1:", type=("build", "run"))
    depends_on("py-ruamel-yaml@0.15:0.17.21", type=("build", "run"))
    depends_on("py-rdflib@4.2.2:6.2", type=("build", "run"))
    depends_on("py-shellescape@3.4.1:3.8", type=("build", "run"))
    depends_on("py-schema-salad@8.2.20211104054942:8", type=("build", "run"))
    depends_on("py-prov@1.5.1", type=("build", "run"))
    depends_on("py-bagit@1.6.4:", type=("build", "run"))
    depends_on("py-mypy-extensions", type=("build", "run"))
    depends_on("py-psutil@5.6.6:", type=("build", "run"))
    depends_on("py-typing-extensions", type=("build", "run"))
    depends_on("py-coloredlogs", type=("build", "run"))
    depends_on("py-pydot@1.4.1:", type=("build", "run"))
    depends_on("py-argcomplete", type=("build", "run"))
    depends_on("py-pyparsing@:3.0.1,3.0.3:", type=("build", "run"))
    depends_on("py-cwl-utils@0.19:", type=("build", "run"))