python-requests-toolbelt: new package

Signed-off-by: Manuel Vögele <develop@manuel-voegele.de>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Manuel Vögele 2016-08-19 14:48:02 +02:00 committed by Thomas Petazzoni
parent 5ab751ca44
commit e73a1db464
4 changed files with 25 additions and 0 deletions

View file

@ -752,6 +752,7 @@ menu "External python modules"
source "package/python-pyyaml/Config.in"
source "package/python-pyzmq/Config.in"
source "package/python-requests/Config.in"
source "package/python-requests-toolbelt/Config.in"
source "package/python-rpi-gpio/Config.in"
source "package/python-rtslib-fb/Config.in"
source "package/python-scapy3k/Config.in"

View file

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_REQUESTS_TOOLBELT
bool "python-requests-toolbelt"
select BR2_PACKAGE_PYTHON_REQUESTS # runtime
help
A utility belt for advanced users of python-requests.
https://toolbelt.readthedocs.org

View file

@ -0,0 +1,3 @@
# md5 from https://pypi.python.org/pypi/requests-toolbelt/json, sha256 locally computed
md5 bfe2009905f460f4764c32cfbbf4205f requests-toolbelt-0.7.0.tar.gz
sha256 33899d4a559c3f0f5e9fbc115d337c4236febdc083755a160a4132d92fc3c91a requests-toolbelt-0.7.0.tar.gz

View file

@ -0,0 +1,14 @@
################################################################################
#
# python-requests-toolbelt
#
################################################################################
PYTHON_REQUESTS_TOOLBELT_VERSION = 0.7.0
PYTHON_REQUESTS_TOOLBELT_SOURCE = requests-toolbelt-$(PYTHON_REQUESTS_TOOLBELT_VERSION).tar.gz
PYTHON_REQUESTS_TOOLBELT_SITE = https://pypi.python.org/packages/59/78/1d391d30ebf74079a8e4de6ab66fdca5362903ef2df64496f4697e9bb626
PYTHON_REQUESTS_TOOLBELT_SETUP_TYPE = setuptools
PYTHON_REQUESTS_TOOLBELT_LICENSE = Apache-2.0
PYTHON_REQUESTS_TOOLBELT_LICENSE_FILES = LICENSE
$(eval $(python-package))