2018-06-23 20:00:51 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=pyjwt
|
2021-10-11 11:46:29 +00:00
|
|
|
PKG_VERSION:=2.2.0
|
|
|
|
PKG_RELEASE:=1
|
2019-05-16 14:51:18 +00:00
|
|
|
|
2021-10-11 11:46:29 +00:00
|
|
|
PKG_MAINTAINER:=Eneas U de Queiroz <cotequeiroz@gmail.com>
|
2018-06-23 20:00:51 +00:00
|
|
|
PKG_LICENSE:=MIT
|
2019-05-16 14:51:18 +00:00
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
2018-06-23 20:00:51 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=PyJWT
|
2021-10-11 11:46:29 +00:00
|
|
|
PKG_HASH:=a0b9a3b4e5ca5517cac9f1a6e9cd30bf1aa80be74fcdf4e28eded582ecfcfbae
|
2019-05-16 14:51:18 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2018-06-23 20:00:51 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2018-12-04 10:02:08 +00:00
|
|
|
include ../python3-package.mk
|
2018-06-23 20:00:51 +00:00
|
|
|
|
2020-04-21 17:27:50 +00:00
|
|
|
define Package/python3-pyjwt
|
2018-06-23 20:00:51 +00:00
|
|
|
SUBMENU:=Python
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
TITLE:=JSON Web Token implementation in Python
|
|
|
|
URL:=http://github.com/jpadilla/pyjwt
|
2020-04-21 17:27:50 +00:00
|
|
|
DEPENDS:=+python3
|
2018-06-23 20:00:51 +00:00
|
|
|
endef
|
|
|
|
|
2018-12-04 10:02:08 +00:00
|
|
|
define Package/python3-pyjwt/description
|
2020-04-01 14:21:16 +00:00
|
|
|
A Python implementation of RFC 7519.
|
2018-12-04 10:02:08 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Py3Package,python3-pyjwt))
|
|
|
|
$(eval $(call BuildPackage,python3-pyjwt))
|
|
|
|
$(eval $(call BuildPackage,python3-pyjwt-src))
|