diff options
author | Justin S <3630356+codeandkey@users.noreply.github.com> | 2020-10-21 16:51:39 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 16:51:39 -0500 |
commit | bbc9c5533e92ced0b3f03125bbe7ee586496f8d8 (patch) | |
tree | 32c140f8361266371a91418d7b7d6c7b61ecb489 | |
parent | 44a81bf91441ac72d6d525350ea9f9a1255e668b (diff) | |
download | spack-bbc9c5533e92ced0b3f03125bbe7ee586496f8d8.tar.gz spack-bbc9c5533e92ced0b3f03125bbe7ee586496f8d8.tar.bz2 spack-bbc9c5533e92ced0b3f03125bbe7ee586496f8d8.tar.xz spack-bbc9c5533e92ced0b3f03125bbe7ee586496f8d8.zip |
py-jsonref: new package at 0.2 (#19448)
-rw-r--r-- | var/spack/repos/builtin/packages/py-jsonref/package.py | 17 |
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') |