Add py-salib (#24218)

This commit is contained in:
Sebastian Schmitt 2021-07-09 15:15:21 +02:00 committed by GitHub
parent f830585994
commit 9add3182c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,24 @@
# 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 PySalib(PythonPackage):
"""Python implementations of commonly used sensitivity analysis methods."""
homepage = "http://salib.readthedocs.org"
pypi = "SALib/SALib-1.4.0.1.tar.gz"
maintainers = ['schmitts']
version('1.4.0.1', sha256='dbf6e865af9f3be82a79cf64889ed66d6d3b6803f0c22a242a112876789d49e7')
depends_on('py-setuptools@38.3:', type=('build', 'run'))
depends_on('py-numpy@1.16.5:', type=('build', 'run'))
depends_on('py-scipy@1.5.2:', type=('build', 'run'))
depends_on('py-matplotlib@3.2.2:', type=('build', 'run'))
depends_on('py-pandas@1.1.2:', type=('build', 'run'))
depends_on('py-pathos@0.2.5:', type=('build', 'run'))