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
|
2018-12-13 18:22:47 +00:00
|
|
|
PKG_VERSION:=1.7.1
|
2020-04-21 17:27:50 +00:00
|
|
|
PKG_RELEASE:=2
|
2019-05-16 14:51:18 +00:00
|
|
|
|
|
|
|
PKG_MAINTAINER:=Eneas U de Queiroz <cote2004-github@yahoo.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
|
2018-12-13 18:22:47 +00:00
|
|
|
PKG_HASH:=8d59a976fb773f3e6a39c85636357c4f0e242707394cadadd9814f5cbaa20e96
|
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))
|