summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-lazy-property/package.py
blob: 8e6b0d13c9b37cdb476ab250c965c88802879ecd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2018 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', '7e046c2441abe1bd272d5360827237b3')
    version('0.0.0', 'fda622b7f1c46ee72ad25f5e88c928f5')

    depends_on('py-setuptools', type='build')