diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2021-04-07 13:15:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-07 11:15:26 -0700 |
commit | 995b6556c9e3196910f25636578de32680f0aa70 (patch) | |
tree | 2059f5540e3c46be6846733c23cc9d75b754005c | |
parent | 868bc1db0a7e5c4c0265b35a326d60383ecc9ff5 (diff) | |
download | spack-995b6556c9e3196910f25636578de32680f0aa70.tar.gz spack-995b6556c9e3196910f25636578de32680f0aa70.tar.bz2 spack-995b6556c9e3196910f25636578de32680f0aa70.tar.xz spack-995b6556c9e3196910f25636578de32680f0aa70.zip |
py-lerc: add new package (#22839)
-rw-r--r-- | var/spack/repos/builtin/packages/py-lerc/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-lerc/package.py b/var/spack/repos/builtin/packages/py-lerc/package.py new file mode 100644 index 0000000000..fd7180bd86 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-lerc/package.py @@ -0,0 +1,18 @@ +# 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 PyLerc(PythonPackage): + """Limited Error Raster Compression.""" + + homepage = "https://github.com/Esri/lerc" + pypi = "lerc/lerc-0.1.0.tar.gz" + + version('0.1.0', sha256='46cac3f5a0194518f49a52e3ae073093fc85b0d79396383b64b1f9dba4aeacc1') + + depends_on('python@3.6:', type=('build', 'run')) + depends_on('py-setuptools', type='build') |