diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2024-07-23 01:11:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-22 17:11:18 -0600 |
commit | 6decd6aaa15e1f47df0f409f3d28feaaafb72127 (patch) | |
tree | c18ae64d4f24ea01bf99dd205e0e4f6b8d9f1235 | |
parent | 3c0ffa86526e66cd123712f9dc57e1ff364b70bb (diff) | |
download | spack-6decd6aaa15e1f47df0f409f3d28feaaafb72127.tar.gz spack-6decd6aaa15e1f47df0f409f3d28feaaafb72127.tar.bz2 spack-6decd6aaa15e1f47df0f409f3d28feaaafb72127.tar.xz spack-6decd6aaa15e1f47df0f409f3d28feaaafb72127.zip |
py-mne-bids: add new package (#45374)
-rw-r--r-- | var/spack/repos/builtin/packages/py-mne-bids/package.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-mne-bids/package.py b/var/spack/repos/builtin/packages/py-mne-bids/package.py new file mode 100644 index 0000000000..4531015272 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-mne-bids/package.py @@ -0,0 +1,29 @@ +# Copyright 2013-2024 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.package import * + + +class PyMneBids(PythonPackage): + """MNE-BIDS: Organizing MEG, EEG, and iEEG data according to the BIDS + specification and facilitating their analysis with MNE-Python.""" + + homepage = "https://mne.tools/mne-bids" + pypi = "mne_bids/mne_bids-0.15.0.tar.gz" + git = "https://github.com/mne-tools/mne-bids" + + license("BSD-3-Clause") + + version("0.15.0", sha256="8a3ac7fb586ba2be70eb687c67ae060b42693078c56232180b27161124c22f72") + + variant("full", default=False, description="Enable full functionality.") + + depends_on("python@3.9:", type=("build", "run")) + depends_on("py-hatchling", type="build") + depends_on("py-hatch-vcs", type="build") + + depends_on("py-mne@1.5:", type=("build", "run")) + depends_on("py-numpy@1.21.2:", type=("build", "run")) + depends_on("py-scipy@1.7.1:", type=("build", "run")) |