spack/var/spack/repos/builtin/packages/py-jsonref/package.py
Todd Gamblin 3118647802
Update copyright year to 2024 (#41919)
It was time to run `spack license update-copyright-year` again.
2024-01-02 09:21:30 +01:00

20 lines
577 B
Python

# Copyright 2013-2024 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"
license("MIT")
version("0.2", sha256="f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697")
depends_on("py-setuptools", type="build")