2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-03-03 02:42:33 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-03-03 02:42:33 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyLazy(PythonPackage):
|
|
|
|
"""Lazy attributes for Python objects"""
|
|
|
|
|
|
|
|
homepage = "https://pypi.python.org/pypi/lazy"
|
|
|
|
url = "https://pypi.io/packages/source/l/lazy/lazy-1.2.zip"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('1.2', sha256='127ea610418057b953f0d102bed83f2c367be13b59f8d0ddf3b8a86c7d31b970')
|
2017-03-03 02:42:33 +08:00
|
|
|
|
|
|
|
depends_on('py-setuptools', type='build')
|