py-paramz: new package at 0.9.5 (#17026)

This commit is contained in:
Justin S 2020-06-10 20:57:08 -05:00 committed by GitHub
parent 478a8aff0e
commit 19dba603ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,21 @@
# Copyright 2013-2020 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"
url = "https://pypi.io/packages/source/p/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'))