diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/py-merlin/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/py-merlin/package.py | 31 |
1 files changed, 23 insertions, 8 deletions
diff --git a/var/spack/repos/builtin/packages/py-merlin/package.py b/var/spack/repos/builtin/packages/py-merlin/package.py index 7ae05a8014..c4185e9193 100644 --- a/var/spack/repos/builtin/packages/py-merlin/package.py +++ b/var/spack/repos/builtin/packages/py-merlin/package.py @@ -7,15 +7,30 @@ from spack import * class PyMerlin(PythonPackage): - """A custom version of Phillip J. Eby's setuptools.""" + """Merlin Workflow for HPC.""" - homepage = "https://pypi.org/project/merlin/" - url = "https://pypi.io/packages/source/m/merlin/merlin-1.8.tar.gz" + 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.8', sha256='a1ba9c13c74daa1724dd3820f1c241d7594d487b11f35347606986028c1881fd') + version('1.4.1', sha256='9d515cfdbcde2443892afd92b78dbc5bf2aed2060ed3a336e683188e015bca7c') + version('master', branch='master') + version('develop', branch='develop') - depends_on('python@:2', type=('build', 'run')) + depends_on('python@3.6:', type=('build', 'run')) + depends_on('py-setuptools', type=('build', 'run')) - def test(self): - # Unit tests are missing from tarball - pass + 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')) |