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.
 
 
 
 
 
 

67 lines
1.9 KiB

#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=python-requests-oauthlib
PKG_VERSION:=1.3.0
PKG_RELEASE:=1
PKG_MAINTAINER:=Eneas U de Queiroz <cotequeiroz@gmail.com>
PKG_LICENSE:=ISC
PKG_LICENSE_FILES:=LICENSE
PYPI_NAME:=requests-oauthlib
PKG_HASH:=b4261601a71fd721a8bd6d7aa1cc1d6a8a93b4a9f5e96626f8e4d91e8beeaa6a
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python-package.mk
include ../python3-package.mk
define Package/python-requests-oauthlib/Default
SUBMENU:=Python
SECTION:=lang
CATEGORY:=Languages
TITLE:=OAuthlib auth for Requests
URL:=https://github.com/requests/requests-oauthlib
endef
define Package/python-requests-oauthlib
$(call Package/python-requests-oauthlib/Default)
DEPENDS:= \
+PACKAGE_python-requests-oauthlib:python \
+PACKAGE_python-requests-oauthlib:python-oauthlib \
+PACKAGE_python-requests-oauthlib:python-requests
VARIANT:=python
endef
define Package/python3-requests-oauthlib
$(call Package/python-requests-oauthlib/Default)
DEPENDS:= \
+PACKAGE_python3-requests-oauthlib:python3 \
+PACKAGE_python3-requests-oauthlib:python3-oauthlib \
+PACKAGE_python3-requests-oauthlib:python3-requests
VARIANT:=python3
endef
define Package/python-requests-oauthlib/description
This python package provides first-class OAuth library support
for Requests.
endef
define Package/python3-requests-oauthlib/description
$(call Package/python-requests-oauthlib/description)
.
(Variant for Python3)
endef
$(eval $(call PyPackage,python-requests-oauthlib))
$(eval $(call BuildPackage,python-requests-oauthlib))
$(eval $(call BuildPackage,python-requests-oauthlib-src))
$(eval $(call Py3Package,python3-requests-oauthlib))
$(eval $(call BuildPackage,python3-requests-oauthlib))
$(eval $(call BuildPackage,python3-requests-oauthlib-src))