
* 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
29 lines
1.2 KiB
Python
29 lines
1.2 KiB
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 PyGcsfs(PythonPackage):
|
|
"""Pythonic file-system for Google Cloud Storage."""
|
|
|
|
homepage = "https://github.com/fsspec/gcsfs"
|
|
pypi = "gcsfs/gcsfs-2023.1.0.tar.gz"
|
|
|
|
license("BSD-3-Clause")
|
|
|
|
version("2024.2.0", sha256="f7cffd7cae2fb50c56ef883f8aef9792be045b5059f06c1902c3a6151509f506")
|
|
version("2023.1.0", sha256="0a7b7ca8c1affa126a14ba35d7b7dff81c49e2aaceedda9732c7f159a4837a26")
|
|
|
|
depends_on("py-setuptools", type="build")
|
|
depends_on("py-aiohttp", type=("build", "run"))
|
|
depends_on("py-decorator@4.1.3:", type=("build", "run"))
|
|
depends_on("py-fsspec@2024.2.0", type=("build", "run"), when="@2024.2.0")
|
|
depends_on("py-fsspec@2023.1.0", type=("build", "run"), when="@2023.1.0")
|
|
depends_on("py-google-auth@1.2:", type=("build", "run"))
|
|
depends_on("py-google-auth-oauthlib", type=("build", "run"))
|
|
depends_on("py-google-cloud-storage", type=("build", "run"))
|
|
depends_on("py-requests", type=("build", "run"))
|