[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_PYDANTIC
bool "python-pydantic"
select BR2_PACKAGE_PYTHON_TYPING_EXTENSIONS # runtime
help
Data validation and settings management using python 3.6
type hinting.
https://github.com/samuelcolvin/pydantic

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pydantic/json
md5 7845d2f3c8fe8602f73f53ec5b6dfa29 pydantic-1.8.2.tar.gz
sha256 26464e57ccaafe72b7ad156fdaa4e9b9ef051f69e175dbbb463283000c05ab7b pydantic-1.8.2.tar.gz
# Locally computed sha256 checksums
sha256 9e3946690ac88b6b73e8f001a0586af13568be8852fd514e4393f39761764387 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-pydantic
#
################################################################################
PYTHON_PYDANTIC_VERSION = 1.8.2
PYTHON_PYDANTIC_SOURCE = pydantic-$(PYTHON_PYDANTIC_VERSION).tar.gz
PYTHON_PYDANTIC_SITE = https://files.pythonhosted.org/packages/b9/d2/12a808613937a6b98cd50d6467352f01322dc0d8ca9fb5b94441625d6684
PYTHON_PYDANTIC_SETUP_TYPE = setuptools
PYTHON_PYDANTIC_LICENSE = MIT
PYTHON_PYDANTIC_LICENSE_FILES = LICENSE
$(eval $(python-package))