From 442241d477a8d77f708354ec258a6bb4eab40bdc Mon Sep 17 00:00:00 2001 From: Glenn Johnson Date: Tue, 6 Apr 2021 14:36:53 -0500 Subject: new package: py-python-box (#22814) --- .../builtin/packages/py-python-box/package.py | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-python-box/package.py (limited to 'var') diff --git a/var/spack/repos/builtin/packages/py-python-box/package.py b/var/spack/repos/builtin/packages/py-python-box/package.py new file mode 100644 index 0000000000..a80f0f0fa8 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-python-box/package.py @@ -0,0 +1,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') -- cgit v1.2.3-70-g09d2