summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/py-jsonref/package.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-jsonref/package.py b/var/spack/repos/builtin/packages/py-jsonref/package.py
new file mode 100644
index 0000000000..405d2155d7
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-jsonref/package.py
@@ -0,0 +1,17 @@
+# 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 PyJsonref(PythonPackage):
+ """An implementation of JSON Reference for Python"""
+
+ homepage = "https://github.com/gazpachoking/jsonref"
+ url = "https://pypi.io/packages/source/j/jsonref/jsonref-0.2.tar.gz"
+
+ version('0.2', sha256='f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697')
+
+ depends_on('py-setuptools', type='build')