blob: 9f9d69c2cbbc9ae5a3c1f3261f97cbc00d8426a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2013-2019 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 PyEasybuildEasyconfigs(PythonPackage):
"""Collection of easyconfig files for EasyBuild, a software build and
installation framework for (scientific) software on HPC systems.
"""
homepage = 'http://hpcugent.github.io/easybuild/'
url = 'https://pypi.io/packages/source/e/easybuild-easyconfigs/easybuild-easyconfigs-3.1.2.tar.gz'
version('3.1.2', '13a4a97fe8a5b9a94f885661cf497d13')
depends_on('py-easybuild-framework@3.1:', when='@3.1:', type='run')
depends_on('py-easybuild-easyblocks@3.1.2:', when='@3.1.2', type='run')
|