Skip to content

Commit e01c390

Browse files
koningadamjstewart
andcommitted
Add the py-merlinwf package (spack#14622)
* Add the py-merlinwf package * Fix importlib-resources package name for spack naming convention. * Add build to dependencies and add updated versions. * Remove pytest-runner dependency. * Fix typo. * Add the py-tabulate dependency. * Add sha256 for version 1.0.0 * Change to maestro version 1.1.5. * Increase to version 1.0.4. * Bump maestrowf version and prepare for new pypi version. * Add sha256sum for version 1.1.5 * Add version 1.1.1. Update maestrowf version to 1.1.7 * Add versions 1.0.5, 1.1.0, 1.1.1 and potential 1.2.0. * Add version 1.2.0 and when on maestrowf@1.1.6. * Add version 1.2.2 , remove 1.2.1 and 1.1.0. * Update var/spack/repos/builtin/packages/py-merlinwf/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/py-merlinwf/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Remove mysql variant until new mysql interface module is enabled. The mysql code may be removed. Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
1 parent 0ce4eef commit e01c390

File tree

1 file changed

+38
-0
lines changed
  • var/spack/repos/builtin/packages/py-merlinwf

1 file changed

+38
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
2+
# Spack Project Developers. See the top-level COPYRIGHT file for details.
3+
#
4+
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
5+
6+
from spack import *
7+
8+
9+
class PyMerlinwf(PythonPackage):
10+
"""Merlin Workflow for HPC."""
11+
12+
homepage = "https://github.com/LLNL/merlin"
13+
url = "https://pypi.io/packages/source/m/merlinwf/merlinwf-1.2.3.tar.gz"
14+
git = "https://github.com/LLNL/merlin.git"
15+
16+
version('1.2.3', sha256='6b13a315f3e8e2894ea05d9cc072639f02eaf71ae0fdbd2bafebd1c20c8470ab')
17+
version('1.1.1', sha256='306055a987e42a79ce348a3f9d71293ed8a9b7f5909c26b6fd233d6a176fff6d')
18+
version('1.0.5', sha256='d66f50eac84ff9d7aa484f2d9655dc60f0352196d333284d81b6623a6f0aa180')
19+
version('master', branch='master')
20+
version('develop', branch='develop')
21+
22+
depends_on('python@3.6:', type=('build', 'run'))
23+
depends_on('py-setuptools', type=('build', 'run'))
24+
25+
depends_on('py-pytest', type='test')
26+
27+
depends_on('py-cached-property', type=('build', 'run'))
28+
depends_on('py-celery@4.3.0:+redis', type=('build', 'run'))
29+
depends_on('py-coloredlogs@10.0:', type=('build', 'run'))
30+
depends_on('py-cryptography', type=('build', 'run'))
31+
depends_on('py-importlib-resources', when="^python@3.0:3.6.99", type=('build', 'run'))
32+
depends_on('py-maestrowf@1.1.7dev0:', when="@1.2.0:", type=('build', 'run'))
33+
depends_on('py-maestrowf@1.1.6:', when="@:1.1.99", type=('build', 'run'))
34+
depends_on('py-numpy', type=('build', 'run'))
35+
depends_on('py-parse', type=('build', 'run'))
36+
depends_on('py-psutil@5.1.0:', type=('build', 'run'))
37+
depends_on('py-pyyaml@5.1.2:', type=('build', 'run'))
38+
depends_on('py-tabulate', type=('build', 'run'))

0 commit comments

Comments
 (0)