4454dec17f
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://github.com/jpadilla/pyjwt Signed-off-by: Grzegorz Blach <grzegorz@blach.pl> [Arnout: bump to 1.7.1] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
15 lines
525 B
Makefile
15 lines
525 B
Makefile
################################################################################
|
|
#
|
|
# python-pyjwt
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_PYJWT_VERSION = 1.7.1
|
|
PYTHON_PYJWT_SOURCE = PyJWT-$(PYTHON_PYJWT_VERSION).tar.gz
|
|
PYTHON_PYJWT_SITE = https://files.pythonhosted.org/packages/2f/38/ff37a24c0243c5f45f5798bd120c0f873eeed073994133c084e1cf13b95c
|
|
PYTHON_PYJWT_SETUP_TYPE = setuptools
|
|
PYTHON_PYJWT_LICENSE = MIT
|
|
PYTHON_PYJWT_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(python-package))
|