summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-dictobj/package.py
blob: 0e19875baae86491b1b0b50ca625206521128457 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2023 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.package import *


class PyDictobj(PythonPackage):
    """A set of Python dictionary objects where keys can be accessed as instance attributes."""

    homepage = "https://github.com/grimwm/py-dictobj"
    pypi = "dictobj/dictobj-0.4.tar.gz"

    license("Apache-2.0")

    version("0.4", sha256="15d6ac1c720350dcce3d01c31882cbc8e4a14cb22a8bca290a18ca7b0c0988f1")

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