diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2021-11-22 02:45:30 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-22 09:45:30 +0100 |
commit | 7c14c86ffd5227527812294a0e1cffd7e67f404e (patch) | |
tree | 438eaa3970bc4de1601b2b1e94d487adb77b6cf7 /var | |
parent | 49b0952371566c3b57702d2c65d278e39eb96918 (diff) | |
download | spack-7c14c86ffd5227527812294a0e1cffd7e67f404e.tar.gz spack-7c14c86ffd5227527812294a0e1cffd7e67f404e.tar.bz2 spack-7c14c86ffd5227527812294a0e1cffd7e67f404e.tar.xz spack-7c14c86ffd5227527812294a0e1cffd7e67f404e.zip |
py-laspy: add new package (#27576)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-laspy/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-laspy/package.py b/var/spack/repos/builtin/packages/py-laspy/package.py new file mode 100644 index 0000000000..756ca9cc4e --- /dev/null +++ b/var/spack/repos/builtin/packages/py-laspy/package.py @@ -0,0 +1,19 @@ +# 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 PyLaspy(PythonPackage): + """Native Python ASPRS LAS read/write library.""" + + homepage = "https://github.com/laspy/laspy" + pypi = "laspy/laspy-2.0.3.tar.gz" + + version('2.0.3', sha256='95c6367bc3a7c1e0d8dc118ae4a6b038bf9e8ad3e60741ecb8d59c36d32f822a') + + depends_on('python@3.6:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + depends_on('py-numpy', type=('build', 'run')) |