summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorToyohisa Kameyama <kameyama@riken.jp>2020-11-10 05:32:10 +0900
committerGitHub <noreply@github.com>2020-11-09 14:32:10 -0600
commit52eecad65ce6ebb7cdfb84895751a8c850978dad (patch)
tree520e336c14bd8bdadfcd0dcda9b6c9479dd7843a /var
parenta047ea84a3125c56bd3a667826acfa396b9d7970 (diff)
downloadspack-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.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-pygps/package.py22
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'))