package/python-typeguard: new package

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
James Hilliard 2022-05-17 15:59:30 -06:00 committed by Thomas Petazzoni
parent fbc17cc59d
commit b7d854bf06
5 changed files with 28 additions and 0 deletions

View File

@ -1359,6 +1359,7 @@ F: package/python-sockjs/
F: package/python-terminaltables/
F: package/python-tinycss2/
F: package/python-tomli/
F: package/python-typeguard/
F: package/python-weasyprint/
F: package/python-yarl/
F: package/python-zopfli/

View File

@ -1269,6 +1269,7 @@ menu "External python modules"
source "package/python-txaio/Config.in"
source "package/python-txdbus/Config.in"
source "package/python-txtorcon/Config.in"
source "package/python-typeguard/Config.in"
source "package/python-typepy/Config.in"
source "package/python-typing-extensions/Config.in"
source "package/python-u-msgpack/Config.in"

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_TYPEGUARD
bool "python-typeguard"
help
Run-time type checker for Python.
https://github.com/agronholm/typeguard

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/typeguard/json
md5 22d49971f62f3baa3525349b1e03723d typeguard-2.13.3.tar.gz
sha256 00edaa8da3a133674796cf5ea87d9f4b4c367d77476e185e80251cc13dfbb8c4 typeguard-2.13.3.tar.gz
# Locally computed sha256 checksums
sha256 6163f7987dfb38d6bc320ce2b70b2f02b862bc41126516d552ef1cd43247e758 LICENSE

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-typeguard
#
################################################################################
PYTHON_TYPEGUARD_VERSION = 2.13.3
PYTHON_TYPEGUARD_SOURCE = typeguard-$(PYTHON_TYPEGUARD_VERSION).tar.gz
PYTHON_TYPEGUARD_SITE = https://files.pythonhosted.org/packages/3a/38/c61bfcf62a7b572b5e9363a802ff92559cb427ee963048e1442e3aef7490
PYTHON_TYPEGUARD_SETUP_TYPE = setuptools
PYTHON_TYPEGUARD_LICENSE = MIT
PYTHON_TYPEGUARD_LICENSE_FILES = LICENSE
PYTHON_TYPEGUARD_DEPENDENCIES = host-python-setuptools-scm
$(eval $(python-package))