
* Deprecate Python 2 installations * Deprecate py-python-meep * Deprecate older easybuild backend libs * Deprecate Python 3.6 * Deprecate miniconda2
25 lines
1.0 KiB
Python
25 lines
1.0 KiB
Python
# Copyright 2013-2021 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 PyEasybuildFramework(PythonPackage):
|
|
"""The core of EasyBuild, a software build and installation framework
|
|
for (scientific) software on HPC systems.
|
|
"""
|
|
|
|
homepage = 'https://easybuilders.github.io/easybuild'
|
|
pypi = 'easybuild-framework/easybuild-framework-4.0.0.tar.gz'
|
|
maintainers = ['boegel']
|
|
|
|
version('4.0.0', sha256='f5c40345cc8b9b5750f53263ade6c9c3a8cd3dfab488d58f76ac61a8ca7c5a77')
|
|
version('3.1.2', sha256='a03598478574e2982587796afdb792d78b598f4c09ebf4bec1a690c06470c00d', deprecated=True)
|
|
|
|
depends_on('python@2.6:2.8', when='@:3', type=('build', 'run'))
|
|
depends_on('python@2.6:2.8,3.5:', when='@4:', type=('build', 'run'))
|
|
depends_on('py-setuptools', when='@:3', type=('build', 'run'))
|
|
depends_on('py-vsc-base@2.5.4:', when='@2.9:3', type='run')
|