# 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 PyLazyLoader(PythonPackage): """lazy_loader makes it easy to load subpackages and functions on demand.""" homepage = "https://scientific-python.org/specs/spec-0001/" pypi = "lazy_loader/lazy_loader-0.1.tar.gz" license("BSD-3-Clause") version("0.1", sha256="77ce7f2737ebabf9c0ff73b4a99c947876d74d24c2f026544e32246ecca5feca") depends_on("py-flit-core@3.7:3", type="build")