summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJustin S <3630356+codeandkey@users.noreply.github.com>2020-10-21 16:51:39 -0500
committerGitHub <noreply@github.com>2020-10-21 16:51:39 -0500
commitbbc9c5533e92ced0b3f03125bbe7ee586496f8d8 (patch)
tree32c140f8361266371a91418d7b7d6c7b61ecb489 /var
parent44a81bf91441ac72d6d525350ea9f9a1255e668b (diff)
downloadspack-bbc9c5533e92ced0b3f03125bbe7ee586496f8d8.tar.gz
spack-bbc9c5533e92ced0b3f03125bbe7ee586496f8d8.tar.bz2
spack-bbc9c5533e92ced0b3f03125bbe7ee586496f8d8.tar.xz
spack-bbc9c5533e92ced0b3f03125bbe7ee586496f8d8.zip
py-jsonref: new package at 0.2 (#19448)
Diffstat (limited to 'var')
-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')