summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew-Dunning-NNL <67964561+Andrew-Dunning-NNL@users.noreply.github.com>2021-01-19 17:56:09 -0500
committerGitHub <noreply@github.com>2021-01-19 16:56:09 -0600
commitd3b04f7704389aa5422cdb44929f591e27e0e3b6 (patch)
treef2edadcaa65ff46f44f3680792e4dcf55b89d039
parent0c5602dc4e22ad4aff13a2f82d278496f01f76db (diff)
downloadspack-d3b04f7704389aa5422cdb44929f591e27e0e3b6.tar.gz
spack-d3b04f7704389aa5422cdb44929f591e27e0e3b6.tar.bz2
spack-d3b04f7704389aa5422cdb44929f591e27e0e3b6.tar.xz
spack-d3b04f7704389aa5422cdb44929f591e27e0e3b6.zip
py-pygtrie: new recipie (#21154)
-rw-r--r--var/spack/repos/builtin/packages/py-pygtrie/package.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pygtrie/package.py b/var/spack/repos/builtin/packages/py-pygtrie/package.py
new file mode 100644
index 0000000000..ce1479f46c
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pygtrie/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 PyPygtrie(PythonPackage):
+ """A pure Python implementation of a trie data structure."""
+
+ homepage = "https://github.com/mina86/pygtrie"
+ pypi = "pygtrie/pygtrie-2.4.2.tar.gz"
+
+ version('2.4.2', sha256='43205559d28863358dbbf25045029f58e2ab357317a59b11f11ade278ac64692')
+ version('2.4.0', sha256='77700d2fcaab321ac65e86c2969fb4b64c116796baf52ab12d07de2e1f6cfc5d')
+ version('2.3.2', sha256='6299cdedd2cbdfda0895c2dbc43efe8828e698c62b574f3ef7e14b3253f80e23')