diff options
author | Sinan <sbulutw@gmail.com> | 2020-09-02 08:29:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-02 10:29:02 -0500 |
commit | e5fdb2a46cfb9a0ec68d28179ecc815910a8a6cf (patch) | |
tree | e4a02df11551c3ea5b23e996ff824c39d8542b8b /var | |
parent | 712e7bd2bf9c90ccdd77854b559bc8e2d0b7a815 (diff) | |
download | spack-e5fdb2a46cfb9a0ec68d28179ecc815910a8a6cf.tar.gz spack-e5fdb2a46cfb9a0ec68d28179ecc815910a8a6cf.tar.bz2 spack-e5fdb2a46cfb9a0ec68d28179ecc815910a8a6cf.tar.xz spack-e5fdb2a46cfb9a0ec68d28179ecc815910a8a6cf.zip |
new package: py-python-fmask (#18382)
* new package: py-python-fmask
* flake8
* add missing dependency
Co-authored-by: sbulut <sbulut@3vgeomatics.com>
Co-authored-by: Sinan81 <Sinan81@earth>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-python-fmask/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-python-fmask/package.py b/var/spack/repos/builtin/packages/py-python-fmask/package.py new file mode 100644 index 0000000000..fe914a5a3b --- /dev/null +++ b/var/spack/repos/builtin/packages/py-python-fmask/package.py @@ -0,0 +1,22 @@ +# Copyright 2013-2020 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 PyPythonFmask(PythonPackage): + """A set of command line utilities and Python modules that implement + the FMASK algorithm for Landsat and Sentinel-2""" + + homepage = "http://pythonfmask.org" + url = "https://github.com/ubarsc/python-fmask/archive/pythonfmask-0.5.4.tar.gz" + + version('0.5.4', sha256='a216aa3108de837fec182602b2b4708442746be31fc1585906802437784a63fe') + + depends_on('python@2.7:2.8,3.4:', type=('build', 'run')) + depends_on('py-rios', type=('build', 'run')) + depends_on('py-numpy', type=('build', 'run')) + depends_on('py-scipy', type=('build', 'run')) + depends_on('gdal+python', type=('build', 'run')) |