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.

38 lines
972 B

  1. # This is free software, licensed under the GNU General Public License v2.
  2. # See /LICENSE for more information.
  3. #
  4. include $(TOPDIR)/rules.mk
  5. PKG_NAME:=itsdangerous
  6. PKG_VERSION:=1.1.0
  7. PKG_RELEASE:=3
  8. PYPI_NAME:=$(PKG_NAME)
  9. PKG_HASH:=321b033d07f2a4136d3ec762eac9f16a10ccd60f53c0c91af90217ace7ba1f19
  10. PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
  11. PKG_LICENSE:=BSD-3-Clause
  12. PKG_LICENSE_FILES:=LICENSE
  13. include ../pypi.mk
  14. include $(INCLUDE_DIR)/package.mk
  15. include ../python3-package.mk
  16. define Package/python3-itsdangerous
  17. SECTION:=lang
  18. CATEGORY:=Languages
  19. SUBMENU:=Python
  20. TITLE:=ItsDangerous
  21. URL:=https://palletsprojects.com/p/itsdangerous/
  22. DEPENDS:=+python3-light
  23. endef
  24. define Package/python3-itsdangerous/description
  25. Various helpers to pass trusted data to untrusted environments and back.
  26. endef
  27. $(eval $(call Py3Package,python3-itsdangerous))
  28. $(eval $(call BuildPackage,python3-itsdangerous))
  29. $(eval $(call BuildPackage,python3-itsdangerous-src))