summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2021-01-22 08:06:34 -0500
committerGitHub <noreply@github.com>2021-01-22 14:06:34 +0100
commit3b38e4345f5f52c4d360d75978279ae8e852bb8e (patch)
tree778a3138d2262210e33bee17c81f81ad359ec7ae /var
parentf6db2f4da4d4afe3e061d9a8a72b5a82f9c294bc (diff)
downloadspack-3b38e4345f5f52c4d360d75978279ae8e852bb8e.tar.gz
spack-3b38e4345f5f52c4d360d75978279ae8e852bb8e.tar.bz2
spack-3b38e4345f5f52c4d360d75978279ae8e852bb8e.tar.xz
spack-3b38e4345f5f52c4d360d75978279ae8e852bb8e.zip
py-filterpy: new package (#20747)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-filterpy/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-filterpy/package.py b/var/spack/repos/builtin/packages/py-filterpy/package.py
new file mode 100644
index 0000000000..4e161722d0
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-filterpy/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 PyFilterpy(PythonPackage):
+ """This library provides Kalman filtering and various
+ related optimal and non-optimal filtering software written
+ in Python."""
+
+ homepage = "https://github.com/rlabbe/filterpy/"
+ pypi = "filterpy/filterpy-1.4.5.zip"
+
+ version('1.4.5', sha256='4f2a4d39e4ea601b9ab42b2db08b5918a9538c168cff1c6895ae26646f3d73b1')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-numpy', type=('build', 'run'))
+ depends_on('py-scipy', type=('build', 'run'))
+ depends_on('py-matplotlib', type=('build', 'run'))