diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2021-07-07 16:37:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-07 16:37:34 +0200 |
commit | 20a191ad9325909434a6ca806ef69c515cbce6a8 (patch) | |
tree | a3b072b5571bf33c5c3403f2c29ae91507e53471 /var | |
parent | d06537f75c1aaf296c8de4fdc14b6495e9e381dd (diff) | |
download | spack-20a191ad9325909434a6ca806ef69c515cbce6a8.tar.gz spack-20a191ad9325909434a6ca806ef69c515cbce6a8.tar.bz2 spack-20a191ad9325909434a6ca806ef69c515cbce6a8.tar.xz spack-20a191ad9325909434a6ca806ef69c515cbce6a8.zip |
py-neurokit2: add new package (#24749)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-neurokit2/package.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-neurokit2/package.py b/var/spack/repos/builtin/packages/py-neurokit2/package.py new file mode 100644 index 0000000000..8c12cd174c --- /dev/null +++ b/var/spack/repos/builtin/packages/py-neurokit2/package.py @@ -0,0 +1,29 @@ +# 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 PyNeurokit2(PythonPackage): + """The Python Toolbox for Neurophysiological Signal Processing. + + This package is the continuation of NeuroKit 1. It's a user-friendly + package providing easy access to advanced biosignal processing routines. + Researchers and clinicians without extensive knowledge of programming or + biomedical signal processing can analyze physiological data with only two + lines of code. + """ + + homepage = "https://github.com/neuropsychology/NeuroKit" + pypi = "neurokit2/neurokit2-0.1.2.tar.gz" + + version('0.1.2', sha256='5ef40037c2d7078ecb713ab0b77b850267babf133856b59595de9613f29787bc') + + depends_on('py-setuptools@040.6.0:', type='build') + depends_on('py-numpy', type=('build', 'run')) + depends_on('py-pandas', type=('build', 'run')) + depends_on('py-scipy', type=('build', 'run')) + depends_on('py-scikit-learn', type=('build', 'run')) + depends_on('py-matplotlib', type=('build', 'run')) |