summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wolf <matthias.wolf@epfl.ch>2020-02-13 10:07:07 +0100
committerGitHub <noreply@github.com>2020-02-13 10:07:07 +0100
commit7252066a329c5361e2ca1e7705c4699b79c6063e (patch)
tree6dbe01da6e82f9cdc23b364c3b6111fb8d984340
parent06c85ea5bfaa1f95ed143ac35a6ba847f7faeded (diff)
downloadspack-7252066a329c5361e2ca1e7705c4699b79c6063e.tar.gz
spack-7252066a329c5361e2ca1e7705c4699b79c6063e.tar.bz2
spack-7252066a329c5361e2ca1e7705c4699b79c6063e.tar.xz
spack-7252066a329c5361e2ca1e7705c4699b79c6063e.zip
py-jinja2-time: new package (#14910)
-rw-r--r--var/spack/repos/builtin/packages/py-jinja2-time/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-jinja2-time/package.py b/var/spack/repos/builtin/packages/py-jinja2-time/package.py
new file mode 100644
index 0000000000..df57e84129
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-jinja2-time/package.py
@@ -0,0 +1,19 @@
+# Copyright 2013-2020 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 PyJinja2Time(PythonPackage):
+ """Jinja2 Extension for Dates and Times"""
+
+ homepage = "https://github.com/hackebrot/jinja2-time"
+ url = "https://github.com/hackebrot/jinja2-time/archive/0.2.0.tar.gz"
+
+ version('0.2.0', sha256='0e647e525ba47523fa400a58fdec090b1cc6dcec4afbf095ee01e9e589e5a5ef')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-arrow')
+ depends_on('py-jinja2')