blob: a80f0f0fa8d436d24ad759b804910547a29964c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# 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 PyPythonBox(PythonPackage):
"""Advanced Python dictionaries with dot notation access
Box will automatically make otherwise inaccessible keys safe to access as
an attribute. You can always pass conversion_box=False to Box to disable
that behavior. Also, all new dict and lists added to a Box or BoxList
object are converted automatically."""
homepage = "https://github.com/cdgriffith/Box"
pypi = "python-box/python-box-5.3.0.tar.gz"
version('5.3.0', sha256='4ed4ef5d34de505a65c01e3f1911de8cdb29484fcae0c035141dce535c6c194a')
variant('extras',
default=False,
description='install the "extras" packages')
depends_on('python@3.6:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-ruamel-yaml', when='+extras')
depends_on('py-toml', when='+extras')
depends_on('py-msgpack', when='+extras')
|