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.

39 lines
1004 B

  1. #
  2. # This is free software, licensed under the GNU General Public License v2.
  3. # See /LICENSE for more information.
  4. #
  5. include $(TOPDIR)/rules.mk
  6. PKG_NAME:=python-oauthlib
  7. PKG_VERSION:=3.1.1
  8. PKG_RELEASE:=1
  9. PKG_MAINTAINER:=Eneas U de Queiroz <cotequeiroz@gmail.com>
  10. PKG_LICENSE:=BSD-3-Clause
  11. PKG_LICENSE_FILES:=LICENSE
  12. PYPI_NAME:=oauthlib
  13. PKG_HASH:=8f0215fcc533dd8dd1bee6f4c412d4f0cd7297307d43ac61666389e3bc3198a3
  14. include ../pypi.mk
  15. include $(INCLUDE_DIR)/package.mk
  16. include ../python3-package.mk
  17. define Package/python3-oauthlib
  18. SUBMENU:=Python
  19. SECTION:=lang
  20. CATEGORY:=Languages
  21. TITLE:=OAuth request-signing logic for Python
  22. URL:=https://github.com/oauthlib/oauthlib
  23. DEPENDS:=+python3-light
  24. endef
  25. define Package/python3-oauthlib/description
  26. A generic, spec-compliant, thorough implementation of the OAuth request-signing
  27. logic for Python
  28. endef
  29. $(eval $(call Py3Package,python3-oauthlib))
  30. $(eval $(call BuildPackage,python3-oauthlib))
  31. $(eval $(call BuildPackage,python3-oauthlib-src))