Add python-typing-extensions package

This commit is contained in:
Calin Crisan 2019-01-21 23:30:05 +02:00
parent 239af55592
commit 07c4c9c4c6
4 changed files with 24 additions and 0 deletions

View File

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

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_TYPING_EXTENSIONS
bool "python-typing-extensions"
depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
help
Typing Extensions Backported and Experimental Type Hints for Python
https://github.com/python/typing/

View File

@ -0,0 +1,2 @@
sha256 fb2cd053238d33a8ec939190f30cfd736c00653a85a2919415cecf7dc3d9da71 typing_extensions-3.7.2.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-typing-extensions
#
################################################################################
PYTHON_TYPING_EXTENSIONS_VERSION = 3.7.2
PYTHON_TYPING_EXTENSIONS_SOURCE = typing_extensions-$(PYTHON_TYPING_EXTENSIONS_VERSION).tar.gz
PYTHON_TYPING_EXTENSIONS_SITE = https://files.pythonhosted.org/packages/fa/aa/229f5c82d17d10d4ef318b5c22a8626a1c78fc97f80d3307035cf696681b
PYTHON_TYPING_EXTENSIONS_SETUP_TYPE = setuptools
PYTHON_TYPING_EXTENSIONS_LICENSE = Apache-2.0
PYTHON_TYPING_EXTENSIONS_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))