
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
19 lines
686 B
Python
19 lines
686 B
Python
# Copyright 2013-2021 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 import *
|
|
|
|
|
|
class PyLazyProperty(PythonPackage):
|
|
"""A package for making properties lazy"""
|
|
|
|
homepage = "https://github.com/jackmaney/lazy-property"
|
|
url = "https://github.com/jackmaney/lazy-property/archive/0.0.1.tar.gz"
|
|
|
|
version('0.0.1', sha256='2cde89dc6f06366b3ab2423da65c469e1fe8b19f52bbd264698d1cdfdb1ef102')
|
|
version('0.0.0', sha256='f43bea2619656eda1f80e5c781f771fee191ac3dba225f0583852be8f6d03c3f')
|
|
|
|
depends_on('py-setuptools', type='build')
|