summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-07-21 03:24:18 +0200
committerGitHub <noreply@github.com>2021-07-20 20:24:18 -0500
commitd4f498db7c2cb5da0ad0202d7a4b6a919ac896b3 (patch)
tree2690323bf880b0d7cf11595f8c33bda345025010
parent72fb3f768f3d01bfd89298871ef2256f9b588e81 (diff)
downloadspack-d4f498db7c2cb5da0ad0202d7a4b6a919ac896b3.tar.gz
spack-d4f498db7c2cb5da0ad0202d7a4b6a919ac896b3.tar.bz2
spack-d4f498db7c2cb5da0ad0202d7a4b6a919ac896b3.tar.xz
spack-d4f498db7c2cb5da0ad0202d7a4b6a919ac896b3.zip
py-rply: add new package (#24989)
-rw-r--r--var/spack/repos/builtin/packages/py-rply/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-rply/package.py b/var/spack/repos/builtin/packages/py-rply/package.py
new file mode 100644
index 0000000000..7fd1505a85
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-rply/package.py
@@ -0,0 +1,18 @@
+# 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 PyRply(PythonPackage):
+ """A pure Python Lex/Yacc that works with RPython."""
+
+ homepage = "https://github.com/alex/rply/"
+ pypi = "rply/rply-0.7.8.tar.gz"
+
+ version('0.7.8', sha256='2a808ac25a4580a9991fc304d64434e299a8fc75760574492f242cbb5bb301c9')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-appdirs', type=('build', 'run'))