diff options
author | Wouter Deconinck <wdconinc@gmail.com> | 2024-11-11 19:58:18 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-11 17:58:18 -0800 |
commit | fc7125fdf3f594683d264e48160ca86717c2109d (patch) | |
tree | 49069e99815ccd8e60c4ca93bd90e9ccba4f2d66 | |
parent | 3fed7086180966329a5cee2e3f9c73cf34c5a532 (diff) | |
download | spack-fc7125fdf3f594683d264e48160ca86717c2109d.tar.gz spack-fc7125fdf3f594683d264e48160ca86717c2109d.tar.bz2 spack-fc7125fdf3f594683d264e48160ca86717c2109d.tar.xz spack-fc7125fdf3f594683d264e48160ca86717c2109d.zip |
py-fsspec-xrootd: new package (#47405)
* py-fsspec-xrootd: new package
* py-fsspec-xrootd: depends_on python@3.8:
-rw-r--r-- | var/spack/repos/builtin/packages/py-fsspec-xrootd/package.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-fsspec-xrootd/package.py b/var/spack/repos/builtin/packages/py-fsspec-xrootd/package.py new file mode 100644 index 0000000000..b14291a6b5 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-fsspec-xrootd/package.py @@ -0,0 +1,26 @@ +# 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 PyFsspecXrootd(PythonPackage): + """An XRootD implementation for fsspec.""" + + homepage = "https://coffeateam.github.io/fsspec-xrootd/" + pypi = "fsspec_xrootd/fsspec_xrootd-0.4.0.tar.gz" + + maintainers("wdconinc") + + license("BSD-3-Clause", checked_by="wdconinc") + + version("0.4.0", sha256="d7f124430d26ab9139d33bc50fa8abfde3624db5dcaa5c18f56af9bf17f16f13") + + depends_on("python@3.8:", type=("build", "run")) + + depends_on("py-setuptools@42:", type="build") + depends_on("py-setuptools-scm@3.4:+toml", type="build") + + depends_on("py-fsspec", type=("build", "run")) |