[add] py-cylc-flow: new recipe (#39986)
* [add] py-cylc-flow: new recipe * py-cylc-flow: fix py-protobuf version Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-cylc-flow: fix py-colorama version Co-authored-by: Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> * py-cylc-flow: Update dependence on py-aiofiles Co-authored-by: Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> * py-cylc-flow: Update dependence on py-pyzmq Co-authored-by: Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> * py-cylcflow: remove useless dependence * py-cylc-flow: fix indent * py-cylc-flow: fix argument in depends_on; move lines * py-cylc-flow: fix the type of the dependence py-setuptools --------- Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> Co-authored-by: LydDeb <lyderic.debusschere.tgcc@cea.fr>
This commit is contained in:
parent
e2a7f2ee9a
commit
633df54520
1 changed files with 36 additions and 0 deletions
36
var/spack/repos/builtin/packages/py-cylc-flow/package.py
Normal file
36
var/spack/repos/builtin/packages/py-cylc-flow/package.py
Normal file
|
@ -0,0 +1,36 @@
|
|||
# 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 PyCylcFlow(PythonPackage):
|
||||
"""A workflow engine for cycling systems."""
|
||||
|
||||
homepage = "https://cylc.org"
|
||||
pypi = "cylc-flow/cylc-flow-8.1.4.tar.gz"
|
||||
|
||||
maintainers("LydDeb")
|
||||
|
||||
version("8.2.0", sha256="cbe35e0d72d1ca36f28a4cebe9b9040a3445a74253bc94051a3c906cf179ded0")
|
||||
version("8.1.4", sha256="d1835ac18f6f24f3115c56b2bc821185484e834a86b12fd0033ff7e4dc3c1f63")
|
||||
|
||||
depends_on("py-setuptools@49:66,68:", type=("build", "run"))
|
||||
depends_on("py-aiofiles@0.7", type=("build", "run"), when="@:8.1")
|
||||
depends_on("py-ansimarkup@1.0.0:", type=("build", "run"))
|
||||
depends_on("py-async-timeout@3.0.0:", type=("build", "run"))
|
||||
depends_on("py-colorama@0.4:1", type=("build", "run"))
|
||||
depends_on("py-graphene@2.1:2", type=("build", "run"))
|
||||
depends_on("py-jinja2@3.0", type=("build", "run"))
|
||||
depends_on("py-metomi-isodatetime@3.0", type=("build", "run"))
|
||||
depends_on("py-protobuf@4.21.2:4.21", type=("build", "run"))
|
||||
depends_on("py-psutil@5.6.0:", type=("build", "run"))
|
||||
depends_on("py-pyzmq@22:", type=("build", "run"), when="@8.2:")
|
||||
depends_on("py-pyzmq@22", type=("build", "run"), when="@:8.1")
|
||||
depends_on("py-importlib-metadata", type=("build", "run"), when="^python@:3.7")
|
||||
depends_on("py-urwid@2", type=("build", "run"))
|
||||
depends_on("py-rx", type=("build", "run"))
|
||||
depends_on("py-promise", type=("build", "run"))
|
||||
depends_on("py-tomli@2:", type=("build", "run"), when="^python@:3.10")
|
Loading…
Reference in a new issue