diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2024-07-31 21:03:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-31 21:03:26 +0200 |
commit | 69d216a88ea454149b6e987741c14a6173e6e285 (patch) | |
tree | ae32ac3138fe42aca9ffa21e8ebbd828623e47e7 /var | |
parent | 04f0af0a28e1f6ff0ef0b50e28ecf9d19fe544e6 (diff) | |
download | spack-69d216a88ea454149b6e987741c14a6173e6e285.tar.gz spack-69d216a88ea454149b6e987741c14a6173e6e285.tar.bz2 spack-69d216a88ea454149b6e987741c14a6173e6e285.tar.xz spack-69d216a88ea454149b6e987741c14a6173e6e285.zip |
py-edflib-python: new package (#45371)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-edflib-python/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-edflib-python/package.py b/var/spack/repos/builtin/packages/py-edflib-python/package.py new file mode 100644 index 0000000000..cb540ec79b --- /dev/null +++ b/var/spack/repos/builtin/packages/py-edflib-python/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 PyEdflibPython(PythonPackage): + """Library to read/write EDF+/BDF+ files written in pure Python by the same + author as the original EDFlib.""" + + homepage = "https://www.teuniz.net/edflib_python/" + pypi = "EDFlib-Python/EDFlib-Python-1.0.8.tar.gz" + git = "https://gitlab.com/Teuniz/EDFlib-Python" + + license("BSD-3-Clause") + + version("1.0.8", sha256="42de3b7980809f37fcc44e3cddc837a3237b69b937a81335dd1f9ffaaf3f2e19") + + depends_on("py-setuptools@42:", type="build") + + depends_on("py-numpy@1.17:", type=("build", "run")) |