summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-skl2onnx/package.py
blob: d7471f76fcc1e0c75f312b3223e0201f5291058f (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
# Copyright 2013-2023 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 PySkl2onnx(PythonPackage):
    """Convert scikit-learn models to ONNX"""

    homepage = "https://github.com/onnx/sklearn-onnx"
    pypi = "skl2onnx/skl2onnx-1.10.3.tar.gz"

    license("Apache-2.0")

    version("1.12", sha256="15f4a07b97f7c5bf11b7353b8cb75c9f8c161485deb198cb49cc61a9d507c29c")
    version("1.10.3", sha256="798933378145412b9876ab3ff2c1dd5f241a7296406d786262000afa8d329628")

    depends_on("py-setuptools", type="build")
    depends_on("py-numpy@1.15:", type=("build", "run"))
    depends_on("py-scipy@1.0:", type=("build", "run"))
    depends_on("py-protobuf", type=("build", "run"))
    depends_on("py-onnx@1.2.1:", type=("build", "run"))
    depends_on("py-scikit-learn@0.19:1.1.1", type=("build", "run"))
    depends_on("py-onnxconverter-common@1.7.0:", type=("build", "run"))
    # Although this dep is undocumented, it's imported at run-time.
    depends_on("py-packaging", when="@1.12:", type=("build", "run"))