This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_JSONMODELS
bool "python-jsonmodels"
select BR2_PACKAGE_PYTHON_DATEUTIL # runtime
select BR2_PACKAGE_PYTHON_SIX # runtime
help
Models to make easier to deal with structures that are
converted to, or read from JSON.
https://github.com/beregond/jsonmodels

View File

@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/jsonmodels/json
md5 96132e252887f840d23792c03fad2039 jsonmodels-2.4.tar.gz
sha256 abc8dc334a1794513e511a75639f77c271ef6a2992b6793f3753c7335dd18775 jsonmodels-2.4.tar.gz
# Locally computed sha256 checksums
sha256 3b1219763eec6924ddd4c4d61dee6a53c5fc9ab62707a9ad763ee363d3050cc5 LICENSE

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-jsonmodels
#
################################################################################
PYTHON_JSONMODELS_VERSION = 2.4
PYTHON_JSONMODELS_SOURCE = jsonmodels-$(PYTHON_JSONMODELS_VERSION).tar.gz
PYTHON_JSONMODELS_SITE = https://files.pythonhosted.org/packages/68/00/524668dc751f9ef91e73c795b2073bf2ddb79728a474d1bcab9c6dc426d8
PYTHON_JSONMODELS_SETUP_TYPE = setuptools
PYTHON_JSONMODELS_LICENSE = BSD-3-Clause
PYTHON_JSONMODELS_LICENSE_FILES = LICENSE
$(eval $(python-package))