python-hyperframe: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Yegor Yefremov 2017-07-05 15:47:39 +02:00 committed by Thomas Petazzoni
parent 0072e21fad
commit 85a1a7dc16
4 changed files with 24 additions and 0 deletions

View File

@ -744,6 +744,7 @@ menu "External python modules"
source "package/python-html5lib/Config.in"
source "package/python-httplib2/Config.in"
source "package/python-humanize/Config.in"
source "package/python-hyperframe/Config.in"
source "package/python-hyperlink/Config.in"
source "package/python-id3/Config.in"
source "package/python-idna/Config.in"

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_HYPERFRAME
bool "python-hyperframe"
help
HTTP/2 framing layer for Python.
http://hyper.rtfd.org

View File

@ -0,0 +1,3 @@
# md5 from https://pypi.python.org/pypi/hyperframe/json, sha256 locally computed
md5 c2aa71dd091836e72d2c6784d1dd1591 hyperframe-5.1.0.tar.gz
sha256 a25944539db36d6a2e47689e7915dcee562b3f8d10c6cdfa0d53c91ed692fb04 hyperframe-5.1.0.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-hyperframe
#
################################################################################
PYTHON_HYPERFRAME_VERSION = 5.1.0
PYTHON_HYPERFRAME_SOURCE = hyperframe-$(PYTHON_HYPERFRAME_VERSION).tar.gz
PYTHON_HYPERFRAME_SITE = https://pypi.python.org/packages/a4/59/dddaddc73b4d53e9649850998e23b6daca80817c5442465a12423235d20b
PYTHON_HYPERFRAME_SETUP_TYPE = setuptools
PYTHON_HYPERFRAME_LICENSE = MIT
PYTHON_HYPERFRAME_LICENSE_FILES = LICENSE
$(eval $(python-package))