summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2021-12-01 10:52:59 -0500
committerGitHub <noreply@github.com>2021-12-01 09:52:59 -0600
commit5a9bc4bfb27fce4258511b6319a5b019767c643b (patch)
treec1c6abca49955e3ea66b4e943942b7b74abadf53 /var
parent67c8a63a0a890c3378e3f4ef06b71767cf0c88f7 (diff)
downloadspack-5a9bc4bfb27fce4258511b6319a5b019767c643b.tar.gz
spack-5a9bc4bfb27fce4258511b6319a5b019767c643b.tar.bz2
spack-5a9bc4bfb27fce4258511b6319a5b019767c643b.tar.xz
spack-5a9bc4bfb27fce4258511b6319a5b019767c643b.zip
New package: py-gin-config (#27732)
* [py-gin-config] created template * [py-gin-config] - depends on setup tools - added homepage - added description - removed fixmes
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-gin-config/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-gin-config/package.py b/var/spack/repos/builtin/packages/py-gin-config/package.py
new file mode 100644
index 0000000000..b10fa8bbb8
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-gin-config/package.py
@@ -0,0 +1,18 @@
+# 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 PyGinConfig(PythonPackage):
+ """Gin provides a lightweight configuration framework for
+ Python, based on dependency injection."""
+
+ homepage = "https://github.com/google/gin-config"
+ pypi = "gin-config/gin-config-0.5.0.tar.gz"
+
+ version('0.5.0', sha256='0c6ea5026ded927c8c93c990b01c695257c1df446e45e549a158cfbc79e19ed6')
+
+ depends_on('py-setuptools', type='build')