mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-03 18:33:48 +08:00
python-websockets: new package
[Peter: add license hash, fix Config.in, correct license as pointed out by Yegor] Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
138a082def
commit
2abe371c53
@ -787,6 +787,9 @@ F: package/pdbg/
|
||||
F: board/qemu/ppc64le-pseries/
|
||||
F: configs/qemu_ppc64le_pseries_defconfig
|
||||
|
||||
N: Joseph Kogut <joseph.kogut@gmail.com>
|
||||
F: package/python-websockets/
|
||||
|
||||
N: Johan Derycke <johanderycke@gmail.com>
|
||||
F: package/python-libconfig/
|
||||
|
||||
|
@ -920,6 +920,7 @@ menu "External python modules"
|
||||
source "package/python-wcwidth/Config.in"
|
||||
source "package/python-web2py/Config.in"
|
||||
source "package/python-webpy/Config.in"
|
||||
source "package/python-websockets/Config.in"
|
||||
source "package/python-werkzeug/Config.in"
|
||||
source "package/python-whoosh/Config.in"
|
||||
source "package/python-ws4py/Config.in"
|
||||
|
9
package/python-websockets/Config.in
Normal file
9
package/python-websockets/Config.in
Normal file
@ -0,0 +1,9 @@
|
||||
config BR2_PACKAGE_PYTHON_WEBSOCKETS
|
||||
bool "python-websockets"
|
||||
depends on BR2_PACKAGE_PYTHON3
|
||||
select BR2_PACKAGE_PYTHON3_ZLIB
|
||||
select BR2_PACKAGE_PYTHON3_SSL
|
||||
help
|
||||
An implementation of the WebSocket Protocol (RFC 6455)
|
||||
|
||||
https://github.com/aaugustin/websockets
|
4
package/python-websockets/python-websockets.hash
Normal file
4
package/python-websockets/python-websockets.hash
Normal file
@ -0,0 +1,4 @@
|
||||
# md5 from https://pypi.python.org/pypi/websockets/json, sha256 locally computed
|
||||
md5 9e8c6b3c70def4146d75fbb0f52bdfc7 websockets-4.0.1.tar.gz
|
||||
sha256 da4d4fbe059b0453e726d6d993760065d69b823a27efc3040402a6fcfe6a1ed9 websockets-4.0.1.tar.gz
|
||||
sha256 2cd4d416e432ca7fda2c103b38b852f8d3cb327d70c3db44410b9fe97e6c4d73 LICENSE
|
14
package/python-websockets/python-websockets.mk
Normal file
14
package/python-websockets/python-websockets.mk
Normal file
@ -0,0 +1,14 @@
|
||||
################################################################################
|
||||
#
|
||||
# python-websockets
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_WEBSOCKETS_VERSION = 4.0.1
|
||||
PYTHON_WEBSOCKETS_SOURCE = websockets-${PYTHON_WEBSOCKETS_VERSION}.tar.gz
|
||||
PYTHON_WEBSOCKETS_SITE = https://pypi.python.org/packages/b6/12/6194aac840c65253e45a38912e318f9ac548f9ba86d75bdb8fe66841b335
|
||||
PYTHON_WEBSOCKETS_SETUP_TYPE = setuptools
|
||||
PYTHON_WEBSOCKETS_LICENSE = BSD-3-Clause
|
||||
PYTHON_WEBSOCKETS_LICENSE_FILES = LICENSE
|
||||
|
||||
$(eval $(python-package))
|
Loading…
Reference in New Issue
Block a user