blob: e9033412acc047d5b0110dd3d6a1e4f6fb1d575e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 2013-2024 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 PyDotmap(PythonPackage):
"""`DotMap` is a dot-access `dict` subclass that allows dot access to items."""
homepage = "https://github.com/drgrib/dotmap"
pypi = "dotmap/dotmap-1.3.30.tar.gz"
maintainers("jonas-eschle")
license("MIT", checked_by="jonas-eschle")
version("1.3.30", sha256="5821a7933f075fb47563417c0e92e0b7c031158b4c9a6a7e56163479b658b368")
depends_on("py-setuptools", type="build")
|