add python-pyjwt package

This commit is contained in:
Calin Crisan 2018-09-28 22:13:10 +03:00
parent 4d85421951
commit 2f3d6bdc2c
4 changed files with 24 additions and 0 deletions

View File

@ -852,6 +852,7 @@ menu "External python modules"
source "package/python-pygments/Config.in"
source "package/python-pyicu/Config.in"
source "package/python-pyinotify/Config.in"
source "package/python-pyjwt/Config.in"
source "package/python-pylibftdi/Config.in"
source "package/python-pylru/Config.in"
source "package/python-pymongo/Config.in"

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_PYJWT
bool "python-pyjwt"
help
PyJWT is a Python library which allows you to encode and decode JSON Web Tokens (JWT).
JWT is an open, industry-standard (RFC 7519) for representing claims securely between two parties.
https://pyjwt.readthedocs.io/en/latest/

View File

@ -0,0 +1,2 @@
md5 2731c6b66b67b95d1944f072f5fa35a9 PyJWT-1.6.4.tar.gz
sha256 4ee413b357d53fd3fb44704577afac88e72e878716116270d722723d65b42176 PyJWT-1.6.4.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-pyjwt
#
################################################################################
PYTHON_PYJWT_VERSION = 1.6.4
PYTHON_PYJWT_SOURCE = PyJWT-$(PYTHON_PYJWT_VERSION).tar.gz
PYTHON_PYJWT_SITE = https://files.pythonhosted.org/packages/00/5e/b358c9bb24421e6155799d995b4aa3aa3307ffc7ecae4ad9d29fd7e07a73
PYTHON_PYJWT_LICENSE = MIT
PYTHON_PYJWT_SETUP_TYPE = setuptools
$(eval $(python-package))