diff options
author | Toyohisa Kameyama <kameyama@riken.jp> | 2020-11-10 05:32:10 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-09 14:32:10 -0600 |
commit | 52eecad65ce6ebb7cdfb84895751a8c850978dad (patch) | |
tree | 520e336c14bd8bdadfcd0dcda9b6c9479dd7843a | |
parent | a047ea84a3125c56bd3a667826acfa396b9d7970 (diff) | |
download | spack-52eecad65ce6ebb7cdfb84895751a8c850978dad.tar.gz spack-52eecad65ce6ebb7cdfb84895751a8c850978dad.tar.bz2 spack-52eecad65ce6ebb7cdfb84895751a8c850978dad.tar.xz spack-52eecad65ce6ebb7cdfb84895751a8c850978dad.zip |
py-pygps: new package. (#19774)
* py-pygps: new package.
* fixed url.
-rw-r--r-- | var/spack/repos/builtin/packages/py-pygps/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pygps/package.py b/var/spack/repos/builtin/packages/py-pygps/package.py new file mode 100644 index 0000000000..ffb556c007 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pygps/package.py @@ -0,0 +1,22 @@ +# 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 PyPygps(PythonPackage): + """pyGPs is a Python library for Gaussian Process (GP) + Regression and Classification.""" + + homepage = "https://github.com/marionmari/pyGPs" + url = "https://pypi.io/packages/source/p/pygps/pyGPs-1.3.5.tar.gz" + + version('1.3.5', sha256='5af668415a7bf1666c7c6da3bb09d29e48c395862c6feb23964b476972a015d4') + + depends_on('py-setuptools', type='build') + depends_on('py-numpy', type=('build', 'run')) + depends_on('py-scipy@0.13:', type=('build', 'run')) + depends_on('py-matplotlib', type=('build', 'run')) + depends_on('py-future', type=('build', 'run')) |