
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
22 lines
741 B
Python
22 lines
741 B
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 PyParamz(PythonPackage):
|
|
"""The Parameterization Framework."""
|
|
|
|
homepage = "https://github.com/sods/paramz"
|
|
pypi = "paramz/paramz-0.9.5.tar.gz"
|
|
|
|
version('0.9.5', sha256='0917211c0f083f344e7f1bc997e0d713dbc147b6380bc19f606119394f820b9a')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-numpy@1.7:', type=('build', 'run'))
|
|
depends_on('py-scipy', type=('build', 'run'))
|
|
depends_on('py-six', type=('build', 'run'))
|
|
depends_on('py-decorator@4.0.10:', type=('build', 'run'))
|