package/python-aiohttp-session: new package

Sessions for aiohttp.web.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
James Hilliard 2018-12-07 16:42:43 +08:00 committed by Peter Korsgaard
parent 411cd189f1
commit e3e5c7451b
5 changed files with 29 additions and 0 deletions

View file

@ -994,6 +994,7 @@ F: configs/pine64_sopine_defconfig
N: James Hilliard <james.hilliard1@gmail.com>
F: package/python-aiodns/
F: package/python-aiohttp/
F: package/python-aiohttp-session/
F: package/python-async-timeout/
F: package/python-cchardet/
F: package/python-multidict/

View file

@ -800,6 +800,7 @@ menu "External python modules"
source "package/python-aiocoap/Config.in"
source "package/python-aiodns/Config.in"
source "package/python-aiohttp/Config.in"
source "package/python-aiohttp-session/Config.in"
source "package/python-alsaaudio/Config.in"
source "package/python-argh/Config.in"
source "package/python-arrow/Config.in"

View file

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_AIOHTTP_SESSION
bool "python-aiohttp-session"
depends on BR2_PACKAGE_PYTHON3
select BR2_PACKAGE_PYTHON_AIOHTTP # runtime
help
Sessions for aiohttp.web.
https://github.com/aio-libs/aiohttp_session/

View file

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/aiohttp-session/json
md5 a873141ee04ffc9fc948d9ee0ed47a8d aiohttp-session-2.7.0.tar.gz
sha256 18ae740845214086f783574edfee1bac36862332bd11d561e048b079d8f6ad34 aiohttp-session-2.7.0.tar.gz
# Locally computed sha256 checksums
sha256 2a86817fedf0c52baaa47d7dd975073639dfaaebd37312bd279de54d7f841791 LICENSE

View file

@ -0,0 +1,14 @@
################################################################################
#
# python-aiohttp-session
#
################################################################################
PYTHON_AIOHTTP_SESSION_VERSION = 2.7.0
PYTHON_AIOHTTP_SESSION_SOURCE = aiohttp-session-$(PYTHON_AIOHTTP_SESSION_VERSION).tar.gz
PYTHON_AIOHTTP_SESSION_SITE = https://files.pythonhosted.org/packages/b5/5f/3f78fd4de2f9b17ad8cfe6c189bfaee3d0a5d2fe954aedad743edd08c813
PYTHON_AIOHTTP_SESSION_SETUP_TYPE = setuptools
PYTHON_AIOHTTP_SESSION_LICENSE = Apache-2.0
PYTHON_AIOHTTP_SESSION_LICENSE_FILES = LICENSE
$(eval $(python-package))