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
985 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:=2.0.1
  7. PKG_RELEASE:=$(AUTORELEASE)
  8. PYPI_NAME:=$(PKG_NAME)
  9. PKG_HASH:=9e724d68fc22902a1435351f84c3fb8623f303fffcc566a4cb952df8c572cff0
  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))