summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSinan <sbulutw@gmail.com>2019-06-11 11:33:43 -0700
committerChuck Atkins <chuck.atkins@kitware.com>2019-06-11 14:33:43 -0400
commit6ae5f38f265ab420d5729d95988536aeccd3c37c (patch)
tree80869d5ce79965c7edc7e56e784e92f5fde4214c
parent667e2f20fe1279fc55661e25755c436040e40955 (diff)
downloadspack-6ae5f38f265ab420d5729d95988536aeccd3c37c.tar.gz
spack-6ae5f38f265ab420d5729d95988536aeccd3c37c.tar.bz2
spack-6ae5f38f265ab420d5729d95988536aeccd3c37c.tar.xz
spack-6ae5f38f265ab420d5729d95988536aeccd3c37c.zip
new python package/py-typesentry (#11657)
* new python package/py-typesentry * add proper version
-rw-r--r--var/spack/repos/builtin/packages/py-typesentry/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-typesentry/package.py b/var/spack/repos/builtin/packages/py-typesentry/package.py
new file mode 100644
index 0000000000..5e17a26188
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-typesentry/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2019 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 PyTypesentry(PythonPackage):
+ """Python library for run-time type checking for type-annotated functions.
+ """
+
+ homepage = "https://github.com/h2oai/typesentry"
+ git = "https://github.com/h2oai/typesentry.git"
+
+ # See the git history of __version__.py for versioning information
+ version('0.2.7', commit='0ca8ed0e62d15ffe430545e7648c9a9b2547b49c')
+
+ depends_on('py-colorama@0.3.0:', type=('build', 'run'))