25 lines
1.1 KiB
Python
25 lines
1.1 KiB
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class PyAzuremlDatasetRuntime(PythonPackage):
|
|
"""The purpose of this package is to coordinate dependencies within
|
|
AzureML packages. It is not intended for public use."""
|
|
|
|
homepage = "https://docs.microsoft.com/en-us/azure/machine-learning/service/"
|
|
url = "https://pypi.io/packages/py3/a/azureml-dataset-runtime/azureml_dataset_runtime-1.11.0.post1-py3-none-any.whl"
|
|
|
|
version("1.23.0", sha256="96ca73d03ffedc0dd336d9383d2e17cf74548a89fc7ca4c201c599817c97bbc6")
|
|
|
|
variant("fuse", default=False, description="Build with FUSE support")
|
|
|
|
depends_on("python@3.0:3", type=("build", "run"))
|
|
depends_on("py-azureml-dataprep@2.10.0:2.10", when="@1.23.0", type=("build", "run"))
|
|
depends_on("py-pyarrow@0.17.0:1", when="@1.23.0", type=("build", "run"))
|
|
depends_on("py-numpy@:1.19.2,1.19.4:", when="@1.23.0:", type=("build", "run"))
|
|
depends_on("py-fusepy@3.0.1:3", when="+fuse", type=("build", "run"))
|