mirror of
https://git.busybox.net/buildroot.git
synced 2025-01-23 04:43:30 +08:00
package/python-frozenlist: new package
A list-like structure which implements collections.abc.MutableSequence. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
4410aafcfb
commit
c241b8ba2d
@ -1147,6 +1147,7 @@ F: package/python-async-lru/
|
||||
F: package/python-async-timeout/
|
||||
F: package/python-brotli/
|
||||
F: package/python-cchardet/
|
||||
F: package/python-frozenlist/
|
||||
F: package/python-janus/
|
||||
F: package/python-logstash/
|
||||
F: package/python-multidict/
|
||||
|
@ -923,6 +923,7 @@ menu "External python modules"
|
||||
source "package/python-flask-login/Config.in"
|
||||
source "package/python-flask-sqlalchemy/Config.in"
|
||||
source "package/python-flup/Config.in"
|
||||
source "package/python-frozenlist/Config.in"
|
||||
source "package/python-functools32/Config.in"
|
||||
source "package/python-future/Config.in"
|
||||
source "package/python-futures/Config.in"
|
||||
|
8
package/python-frozenlist/Config.in
Normal file
8
package/python-frozenlist/Config.in
Normal file
@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_PYTHON_FROZENLIST
|
||||
bool "python-frozenlist"
|
||||
depends on BR2_PACKAGE_PYTHON3
|
||||
help
|
||||
A list-like structure which implements
|
||||
collections.abc.MutableSequence.
|
||||
|
||||
https://github.com/aio-libs/frozenlist
|
5
package/python-frozenlist/python-frozenlist.hash
Normal file
5
package/python-frozenlist/python-frozenlist.hash
Normal file
@ -0,0 +1,5 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/frozenlist/json
|
||||
md5 7d493070a7fe12b6be753585c1995abe frozenlist-1.0.0.tar.gz
|
||||
sha256 d1076a40cd1bef6edf148cc05aecce52a11c9bbd2a3d60ce37cc07e03c8dc6c7 frozenlist-1.0.0.tar.gz
|
||||
# Locally computed sha256 checksums
|
||||
sha256 6fd5243e92dd7f98ec69c7ac377728e74905709ff527a5bf98d6d0263c04f5b6 LICENSE.txt
|
14
package/python-frozenlist/python-frozenlist.mk
Normal file
14
package/python-frozenlist/python-frozenlist.mk
Normal file
@ -0,0 +1,14 @@
|
||||
################################################################################
|
||||
#
|
||||
# python-frozenlist
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_FROZENLIST_VERSION = 1.0.0
|
||||
PYTHON_FROZENLIST_SOURCE = frozenlist-$(PYTHON_FROZENLIST_VERSION).tar.gz
|
||||
PYTHON_FROZENLIST_SITE = https://files.pythonhosted.org/packages/85/32/12f1247bf4915b74a00264aa0033745ee871759daee47499641bd13aeee7
|
||||
PYTHON_FROZENLIST_SETUP_TYPE = setuptools
|
||||
PYTHON_FROZENLIST_LICENSE = Apache-2.0
|
||||
PYTHON_FROZENLIST_LICENSE_FILES = LICENSE.txt
|
||||
|
||||
$(eval $(python-package))
|
Loading…
Reference in New Issue
Block a user