add package py dotmap (#42665)

* add package py dotmap

* add maintainer

* [@spackbot] updating style on behalf of jonas-eschle

* fix:  add description

* [@spackbot] updating style on behalf of jonas-eschle

* Update package.py

---------

Co-authored-by: jonas-eschle <jonas-eschle@users.noreply.github.com>
This commit is contained in:
Jonas Eschle 2024-02-18 04:16:32 -05:00 committed by GitHub
parent 32506e222d
commit fd10cfdebf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,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")