summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pydap/package.py
blob: 2d00f33cde9d710e3799c36e4cb74cbbfba024ce (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
# Copyright 2013-2023 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 PyPydap(PythonPackage):
    """An implementation of the Data Access Protocol."""

    homepage = "https://www.pydap.org/en/latest/"
    pypi = "Pydap/Pydap-3.2.2.tar.gz"

    license("MIT")

    version("3.2.2", sha256="86326642e24f421595a74b0f9986da76d7932b277768f501fe214d72592bdc40")

    depends_on("py-setuptools", type="build")
    depends_on("py-numpy", type=("build", "run"))
    depends_on("py-webob", type=("build", "run"))
    depends_on("py-jinja2", type=("build", "run"))
    depends_on("py-docopt", type=("build", "run"))
    depends_on("py-six@1.4.0:", type=("build", "run"))
    depends_on("py-beautifulsoup4", type=("build", "run"))