You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.1 KiB

  1. #
  2. # Copyright (C) 2021 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=python-typing-extensions
  9. PKG_VERSION:=3.10.0.0
  10. PKG_RELEASE:=1
  11. PYPI_NAME:=typing-extensions
  12. PYPI_SOURCE_NAME:=typing_extensions
  13. PKG_HASH:=50b6f157849174217d0656f99dc82fe932884fb250826c18350e159ec6cdf342
  14. PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec1@gmail.com>
  15. PKG_LICENSE:=PSF-2.0
  16. PKG_LICENSE_FILES:=LICENSE
  17. include ../pypi.mk
  18. include $(INCLUDE_DIR)/package.mk
  19. include ../python3-package.mk
  20. define Package/python3-typing-extensions
  21. SUBMENU:=Python
  22. SECTION:=lang
  23. CATEGORY:=Languages
  24. TITLE:=Module with type hints for Python
  25. URL:=https://github.com/python/typing
  26. DEPENDS:= \
  27. +python3-light
  28. endef
  29. define Package/python3-typing-extensions/description
  30. Backported and Experimental Type Hints for Python.
  31. endef
  32. $(eval $(call Py3Package,python3-typing-extensions))
  33. $(eval $(call BuildPackage,python3-typing-extensions))
  34. $(eval $(call BuildPackage,python3-typing-extensions-src))