summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-lazy-object-proxy/package.py
blob: c2b420d70f68beba72c7a1c8da410b418dd8ce6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 PyLazyObjectProxy(PythonPackage):
    """A fast and thorough lazy object proxy."""

    homepage = "https://github.com/ionelmc/python-lazy-object-proxy"
    url      = "https://pypi.io/packages/source/l/lazy-object-proxy/lazy-object-proxy-1.3.1.tar.gz"

    version('1.3.1', 'e128152b76eb5b9ba759504936139fd0')

    conflicts('^python@3.0:3.2.99')

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