summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-lightning-lite/package.py
blob: de0783e09c67a7f6b359515cb7479dda0c919969 (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
30
31
32
# 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 PyLightningLite(PythonPackage):
    """LightningLite enables pure PyTorch users to scale their existing code on any kind
    of device while retaining full control over their own loops and optimization logic."""

    homepage = "https://github.com/Lightning-AI/lightning"
    pypi = "lightning-lite/lightning-lite-1.8.0.tar.gz"

    maintainers("adamjstewart")

    license("Apache-2.0")

    version("1.8.0", sha256="a71940409d3d1a5bb20f63716c86a745157ce30100f1c16600dfe33d9b657955")

    # src/lightning_lite/__setup__.py
    depends_on("python@3.7:", type=("build", "run"))
    depends_on("py-setuptools", type="build")

    # requirements/lite/base.txt
    depends_on("py-numpy@1.17.2:", type=("build", "run"))
    depends_on("py-torch@1.9:", type=("build", "run"))
    depends_on("py-fsspec@2021.06.1:+http", type=("build", "run"))
    depends_on("py-packaging@17:", type=("build", "run"))
    depends_on("py-typing-extensions@4:", type=("build", "run"))
    depends_on("py-lightning-utilities@0.3", type=("build", "run"))