diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2024-08-01 02:07:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-01 02:07:11 +0200 |
commit | b3b9f4d4b75e7036c5c16ce657b83e6aa662db27 (patch) | |
tree | 5f71b72433945a74e9bc5bed141dd6e29c0027d2 /var | |
parent | c1f2b3685487a60ac32a3ef75cc946d3252fbeb0 (diff) | |
download | spack-b3b9f4d4b75e7036c5c16ce657b83e6aa662db27.tar.gz spack-b3b9f4d4b75e7036c5c16ce657b83e6aa662db27.tar.bz2 spack-b3b9f4d4b75e7036c5c16ce657b83e6aa662db27.tar.xz spack-b3b9f4d4b75e7036c5c16ce657b83e6aa662db27.zip |
py-pybv: new package (#45370)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-pybv/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pybv/package.py b/var/spack/repos/builtin/packages/py-pybv/package.py new file mode 100644 index 0000000000..97caab42ec --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pybv/package.py @@ -0,0 +1,23 @@ +# 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 PyPybv(PythonPackage): + """A lightweight I/O utility for the BrainVision data format.""" + + homepage = "https://github.com/bids-standard/pybv" + pypi = "pybv/pybv-0.7.5.tar.gz" + git = "https://github.com/bids-standard/pybv" + + license("BSD-3-Clause") + + version("0.7.5", sha256="57bb09305c1255b11dd5c6a75d0e6b3c81675cf0469d6a757b148ac332ac05d5") + + depends_on("python@3.7:3", type=("build", "run")) + depends_on("py-setuptools@46.4:", type="build") + + depends_on("py-numpy@1.18.1:", type=("build", "run")) |