summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-astropy-healpix/package.py
blob: 35a01f483c544e339607dc2b18d5b4c25f3c2bbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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 PyAstropyHealpix(PythonPackage):
    """HEALPix (Hierarchical Equal Area isoLatitude Pixelisation) is
    an algorithm for pixellizing a sphere that is sometimes used in
    Astronomy to store data from all-sky surveys, but the general
    algorithm can apply to any field that has to deal with
    representing data on a sphere."""

    homepage = "https://astropy-healpix.readthedocs.io/en/latest/"
    pypi = "astropy-healpix/astropy-healpix-0.5.tar.gz"

    license("BSD-3-Clause")

    version("0.5", sha256="5ae15da796a840f221fb83e25de791e827b6921bc21a365d99bc1a59c7c0cdad")

    depends_on("py-setuptools", type=("build", "run"))
    depends_on("python@3.6:", type=("build", "run"))
    depends_on("py-astropy@2.0:", type=("build", "run"))
    depends_on("py-numpy@1.11:", type=("build", "run"))