summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Eschle <jonas.eschle@cern.ch>2024-02-18 04:16:32 -0500
committerGitHub <noreply@github.com>2024-02-18 03:16:32 -0600
commitfd10cfdebfa3e5b18c52b307b2efb1f0cb4a1b77 (patch)
tree147eb0d133d21d37bf191b13a731e024474051dd
parent32506e222d69f4383d421255e2b96fe0c5682388 (diff)
downloadspack-fd10cfdebfa3e5b18c52b307b2efb1f0cb4a1b77.tar.gz
spack-fd10cfdebfa3e5b18c52b307b2efb1f0cb4a1b77.tar.bz2
spack-fd10cfdebfa3e5b18c52b307b2efb1f0cb4a1b77.tar.xz
spack-fd10cfdebfa3e5b18c52b307b2efb1f0cb4a1b77.zip
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>
-rw-r--r--var/spack/repos/builtin/packages/py-dotmap/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-dotmap/package.py b/var/spack/repos/builtin/packages/py-dotmap/package.py
new file mode 100644
index 0000000000..e9033412ac
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-dotmap/package.py
@@ -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")