diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2024-07-31 21:04:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-31 21:04:44 +0200 |
commit | 88782fb05acb7917ee2662dc748b5e7da4001ec2 (patch) | |
tree | b00a17928ef0d3d9af18f55b17d5386f3641ae76 /var | |
parent | 69d216a88ea454149b6e987741c14a6173e6e285 (diff) | |
download | spack-88782fb05acb7917ee2662dc748b5e7da4001ec2.tar.gz spack-88782fb05acb7917ee2662dc748b5e7da4001ec2.tar.bz2 spack-88782fb05acb7917ee2662dc748b5e7da4001ec2.tar.xz spack-88782fb05acb7917ee2662dc748b5e7da4001ec2.zip |
py-eeglabio: new package (#45372)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-eeglabio/package.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-eeglabio/package.py b/var/spack/repos/builtin/packages/py-eeglabio/package.py new file mode 100644 index 0000000000..3a31cf77b3 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-eeglabio/package.py @@ -0,0 +1,25 @@ +# 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 PyEeglabio(PythonPackage): + """I/O support for EEGLAB files in Python.""" + + homepage = "https://github.com/jackz314/eeglabio" + pypi = "eeglabio/eeglabio-0.0.2.post4.tar.gz" + + license("BSD-3-Clause") + + version( + "0.0.2.post4", sha256="64ccaca0ec1b0aa78ca6569ed3581ea601dec51ae6a3b2971e9dc82f54d95f39" + ) + + depends_on("python@3.7:", type=("build", "run")) + depends_on("py-setuptools", type="build") + + depends_on("py-numpy", type=("build", "run")) + depends_on("py-scipy", type=("build", "run")) |