package/python-annotated-types: new package

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
James Hilliard 2023-11-25 01:10:50 -07:00 committed by Yann E. MORIN
parent bfafe9b3e9
commit 0f26d43427
4 changed files with 27 additions and 0 deletions

View File

@ -974,6 +974,7 @@ menu "External python modules"
source "package/python-aiozipkin/Config.in"
source "package/python-alembic/Config.in"
source "package/python-alsaaudio/Config.in"
source "package/python-annotated-types/Config.in"
source "package/python-ansicolors/Config.in"
source "package/python-apispec/Config.in"
source "package/python-appdirs/Config.in"

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_ANNOTATED_TYPES
bool "python-annotated-types"
help
Reusable constraint types to use with typing.Annotated.
https://github.com/annotated-types/annotated-types

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/annotated-types/json
md5 5fe2125b08851f0d05a8efad6456861c annotated_types-0.6.0.tar.gz
sha256 563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d annotated_types-0.6.0.tar.gz
# Locally computed sha256 checksums
sha256 fe1049884b1a0d9342901e88e07f32925d24b3121d9972b6a6805fb9824b095d LICENSE

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-annotated-types
#
################################################################################
PYTHON_ANNOTATED_TYPES_VERSION = 0.6.0
PYTHON_ANNOTATED_TYPES_SOURCE = annotated_types-$(PYTHON_ANNOTATED_TYPES_VERSION).tar.gz
PYTHON_ANNOTATED_TYPES_SITE = https://files.pythonhosted.org/packages/67/fe/8c7b275824c6d2cd17c93ee85d0ee81c090285b6d52f4876ccc47cf9c3c4
PYTHON_ANNOTATED_TYPES_SETUP_TYPE = pep517
PYTHON_ANNOTATED_TYPES_LICENSE = MIT
PYTHON_ANNOTATED_TYPES_LICENSE_FILES = LICENSE
PYTHON_ANNOTATED_TYPES_DEPENDENCIES = host-python-hatchling
$(eval $(python-package))