summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-azureml-dataset-runtime/package.py
blob: 56878089a0e127b4143189631cce3354c353560e (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
26
27
28
29
# 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 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",
        expand=False,
    )

    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"))