
* py-earth2mip: add new package * Fix audit tests * Make things easier to concretize * Make things easier to concretize * Fix magics build * Fix onnx build * blacken * cmake > py-cmake * Fix onnxruntime build * onnxruntime: remove unknown cmake vars * Trick bazelisk into using Spack bazel * Different deps for main * protobuf: add v3.25.3 * Enforce upper bound on jaxlib version * py-chex: add v0.1.85 * py-dm-haiku: add v0.0.12 * py-jax: add v0.4.25 * Older jaxlib doesn't build on ppc64le either
23 lines
761 B
Python
23 lines
761 B
Python
# 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 PyCdsapi(PythonPackage):
|
|
"""Climate Data Store API."""
|
|
|
|
homepage = "https://cds.climate.copernicus.eu"
|
|
pypi = "cdsapi/cdsapi-0.2.3.tar.gz"
|
|
|
|
license("Apache-2.0")
|
|
|
|
version("0.6.1", sha256="7d40c58e3fd3e75a8acdcdc81eab4ef9b6f763b2902ba01d7d1738f3652a5a30")
|
|
version("0.2.3", sha256="333b31ec263224399635db9b21a2e1a50cd73451f5179f8d967437e7c9161d9b")
|
|
|
|
depends_on("py-setuptools", type="build")
|
|
depends_on("py-requests@2.5.0:", type=("build", "run"))
|
|
depends_on("py-tqdm", type=("build", "run"))
|