
* Change py-merlinwf to py-merlin to match PyPi. Change py-merlin to py-merlin-info. Move to py-merlin_info. Add py-merlin-info back in. * Update dependent packages for the new merlin name. * Remove non-working pyre and the associated packages, exchanger, py-pythia and py-mlerin-info from citcoms. * Remove blank line.
37 lines
1.5 KiB
Python
37 lines
1.5 KiB
Python
# Copyright 2013-2020 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 import *
|
|
|
|
|
|
class PyMerlin(PythonPackage):
|
|
"""Merlin Workflow for HPC."""
|
|
|
|
homepage = "https://github.com/LLNL/merlin"
|
|
url = "https://pypi.io/packages/source/m/merlin/merlin-1.4.1.tar.gz"
|
|
git = "https://github.com/LLNL/merlin.git"
|
|
|
|
version('1.4.1', sha256='9d515cfdbcde2443892afd92b78dbc5bf2aed2060ed3a336e683188e015bca7c')
|
|
version('master', branch='master')
|
|
version('develop', branch='develop')
|
|
|
|
depends_on('python@3.6:', type=('build', 'run'))
|
|
depends_on('py-setuptools', type=('build', 'run'))
|
|
|
|
depends_on('py-pytest', type='test')
|
|
|
|
depends_on('py-cached-property', type=('build', 'run'))
|
|
depends_on('py-celery@4.3.0:+redis', type=('build', 'run'))
|
|
depends_on('py-coloredlogs@10.0:', type=('build', 'run'))
|
|
depends_on('py-cryptography', type=('build', 'run'))
|
|
depends_on('py-importlib-resources', when="^python@3.0:3.6.99", type=('build', 'run'))
|
|
depends_on('py-maestrowf@1.1.7dev0:', when="@1.2.0:", type=('build', 'run'))
|
|
depends_on('py-maestrowf@1.1.6:', when="@:1.1.99", type=('build', 'run'))
|
|
depends_on('py-numpy', type=('build', 'run'))
|
|
depends_on('py-parse', type=('build', 'run'))
|
|
depends_on('py-psutil@5.1.0:', type=('build', 'run'))
|
|
depends_on('py-pyyaml@5.1.2:', type=('build', 'run'))
|
|
depends_on('py-tabulate', type=('build', 'run'))
|