summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-07-05 12:44:23 +0200
committerGitHub <noreply@github.com>2021-07-05 12:44:23 +0200
commit1cb2855054c40e6de7c6f9bf8efb7c8331009ca8 (patch)
tree5d5939e1922c5182bdc77f401889d0ef1aa33bff /var
parent95b0eb9fdd9bab34c05bd213975b6a4eb6fdb1fa (diff)
downloadspack-1cb2855054c40e6de7c6f9bf8efb7c8331009ca8.tar.gz
spack-1cb2855054c40e6de7c6f9bf8efb7c8331009ca8.tar.bz2
spack-1cb2855054c40e6de7c6f9bf8efb7c8331009ca8.tar.xz
spack-1cb2855054c40e6de7c6f9bf8efb7c8331009ca8.zip
py-iso8601: add new package (#24702)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-iso8601/package.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-iso8601/package.py b/var/spack/repos/builtin/packages/py-iso8601/package.py
new file mode 100644
index 0000000000..eef351de1b
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-iso8601/package.py
@@ -0,0 +1,17 @@
+# 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 PyIso8601(PythonPackage):
+ """Simple module to parse ISO 8601 dates"""
+
+ homepage = "https://pyiso8601.readthedocs.io/en/latest/"
+ pypi = "iso8601/iso8601-0.1.14.tar.gz"
+
+ version('0.1.14', sha256='8aafd56fa0290496c5edbb13c311f78fa3a241f0853540da09d9363eae3ebd79')
+
+ depends_on('py-setuptools', type='build')