summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorRyan Marcellino <67644978+myan-rarcellino-nnl@users.noreply.github.com>2022-08-23 15:55:53 -0400
committerGitHub <noreply@github.com>2022-08-23 12:55:53 -0700
commitb238a9a4575aa2201629529191339e230f632a41 (patch)
treeccfa7ca224f175c460678df5eef20c5f9b15d5ce /var
parent8af3743e911be25f60de9ddf2be77f1d2429b625 (diff)
downloadspack-b238a9a4575aa2201629529191339e230f632a41.tar.gz
spack-b238a9a4575aa2201629529191339e230f632a41.tar.bz2
spack-b238a9a4575aa2201629529191339e230f632a41.tar.xz
spack-b238a9a4575aa2201629529191339e230f632a41.zip
New package: py-pyyaml-env-tag (#32333)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-pyyaml-env-tag/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyyaml-env-tag/package.py b/var/spack/repos/builtin/packages/py-pyyaml-env-tag/package.py
new file mode 100644
index 0000000000..61d7292331
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pyyaml-env-tag/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2022 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 PyPyyamlEnvTag(PythonPackage):
+ """A custom YAML tag for referencing environment variables in YAML files."""
+
+ homepage = "https://github.com/waylan/pyyaml-env-tag"
+ pypi = "pyyaml_env_tag/pyyaml_env_tag-0.1.tar.gz"
+
+ version("0.1", sha256="70092675bda14fdec33b31ba77e7543de9ddc88f2e5b99160396572d11525bdb")
+
+ depends_on("python@3.6:", type=("build", "run"))
+ depends_on("py-flit-core@2:3", type="build")
+ depends_on("py-pyyaml", type=("build", "run"))