package/python-jsonschema-specifications: new package

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
This commit is contained in:
James Hilliard 2023-11-05 01:55:45 -07:00 committed by Arnout Vandecappelle
parent 2a36024a63
commit 94e985fdc3
4 changed files with 32 additions and 0 deletions

View File

@ -1133,6 +1133,7 @@ menu "External python modules"
source "package/python-json-schema-validator/Config.in"
source "package/python-jsonmodels/Config.in"
source "package/python-jsonschema/Config.in"
source "package/python-jsonschema-specifications/Config.in"
source "package/python-keyring/Config.in"
source "package/python-kiwisolver/Config.in"
source "package/python-kmod/Config.in"

View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_JSONSCHEMA_SPECIFICATIONS
bool "python-jsonschema-specifications"
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS # python-referencing -> python-rpds-py
select BR2_PACKAGE_PYTHON_REFERENCING # runtime
help
The JSON Schema meta-schemas and vocabularies, exposed as a
Registry.
https://github.com/python-jsonschema/jsonschema-specifications

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/jsonschema-specifications/json
md5 d37762167688d8a05024b92dc8a1e20f jsonschema_specifications-2023.7.1.tar.gz
sha256 c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb jsonschema_specifications-2023.7.1.tar.gz
# Locally computed sha256 checksums
sha256 42dcd63495f87b4eb7c7757afa379bb55a53f94afd7a5f657d9adf57236e515c COPYING

View File

@ -0,0 +1,17 @@
################################################################################
#
# python-jsonschema-specifications
#
################################################################################
PYTHON_JSONSCHEMA_SPECIFICATIONS_VERSION = 2023.7.1
PYTHON_JSONSCHEMA_SPECIFICATIONS_SOURCE = jsonschema_specifications-$(PYTHON_JSONSCHEMA_SPECIFICATIONS_VERSION).tar.gz
PYTHON_JSONSCHEMA_SPECIFICATIONS_SITE = https://files.pythonhosted.org/packages/12/ce/eb5396b34c28cbac19a6a8632f0e03d309135d77285536258b82120198d8
PYTHON_JSONSCHEMA_SPECIFICATIONS_SETUP_TYPE = pep517
PYTHON_JSONSCHEMA_SPECIFICATIONS_LICENSE = MIT
PYTHON_JSONSCHEMA_SPECIFICATIONS_LICENSE_FILES = COPYING
PYTHON_JSONSCHEMA_SPECIFICATIONS_DEPENDENCIES = \
host-python-hatchling \
host-python-hatch-vcs
$(eval $(python-package))