summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-jsonref/package.py
blob: 214d40b12aeb12006b55aac17e684cc16a956026 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright 2013-2022 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.package import *


class PyJsonref(PythonPackage):
    """An implementation of JSON Reference for Python"""

    homepage = "https://github.com/gazpachoking/jsonref"
    pypi = "jsonref/jsonref-0.2.tar.gz"

    version('0.2', sha256='f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697')

    depends_on('py-setuptools', type='build')