2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
2021-11-13 00:45:07 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
|
|
|
|
|
|
|
|
2021-11-13 00:45:07 +08:00
|
|
|
class PyFastjsonschema(PythonPackage):
|
|
|
|
"""Fast JSON schema validator for Python."""
|
|
|
|
|
|
|
|
homepage = "https://github.com/horejsek/python-fastjsonschema"
|
|
|
|
pypi = "fastjsonschema/fastjsonschema-2.15.1.tar.gz"
|
|
|
|
|
2022-09-27 23:38:02 +08:00
|
|
|
version("2.16.2", sha256="01e366f25d9047816fe3d288cbfc3e10541daf0af2044763f3d0ade42476da18")
|
2021-11-13 00:45:07 +08:00
|
|
|
version("2.15.1", sha256="671f36d225b3493629b5e789428660109528f373cf4b8a22bac6fa2f8191c2d2")
|
|
|
|
|
|
|
|
depends_on("py-setuptools", type="build")
|