mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
package: add python-texttable
Module for creating simple ASCII tables. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
aa2a309b60
commit
a68ced9432
@ -1394,6 +1394,7 @@ F: package/python-enum34/
|
||||
F: package/python-ipaddr/
|
||||
F: package/python-pam/
|
||||
F: package/python-psutil/
|
||||
F: package/python-texttable/
|
||||
F: package/python-websocket-client/
|
||||
F: package/triggerhappy/
|
||||
|
||||
|
@ -932,6 +932,7 @@ menu "External python modules"
|
||||
source "package/python-systemd/Config.in"
|
||||
source "package/python-tabledata/Config.in"
|
||||
source "package/python-tempora/Config.in"
|
||||
source "package/python-texttable/Config.in"
|
||||
source "package/python-typepy/Config.in"
|
||||
source "package/python-thrift/Config.in"
|
||||
source "package/python-tomako/Config.in"
|
||||
|
6
package/python-texttable/Config.in
Normal file
6
package/python-texttable/Config.in
Normal file
@ -0,0 +1,6 @@
|
||||
config BR2_PACKAGE_PYTHON_TEXTTABLE
|
||||
bool "python-texttable"
|
||||
help
|
||||
module for creating simple ASCII tables.
|
||||
|
||||
https://github.com/foutaise/texttable/
|
4
package/python-texttable/python-texttable.hash
Normal file
4
package/python-texttable/python-texttable.hash
Normal file
@ -0,0 +1,4 @@
|
||||
# md5 from https://pypi.python.org/pypi/texttable/json, sha256 locally computed
|
||||
md5 a712b5a5464d51c5fc43c64d9d2cd0de texttable-0.9.1.tar.gz
|
||||
sha256 119041773ff03596b56392532f9315cb3a3116e404fd6f36e76a7dc088d95c79 texttable-0.9.1.tar.gz
|
||||
sha256 da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768 LICENSE
|
14
package/python-texttable/python-texttable.mk
Normal file
14
package/python-texttable/python-texttable.mk
Normal file
@ -0,0 +1,14 @@
|
||||
################################################################################
|
||||
#
|
||||
# python-texttable
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_TEXTTABLE_VERSION = 0.9.1
|
||||
PYTHON_TEXTTABLE_SOURCE = texttable-$(PYTHON_TEXTTABLE_VERSION).tar.gz
|
||||
PYTHON_TEXTTABLE_SITE = https://pypi.python.org/packages/02/e1/2565e6b842de7945af0555167d33acfc8a615584ef7abd30d1eae00a4d80
|
||||
PYTHON_TEXTTABLE_SETUP_TYPE = distutils
|
||||
PYTHON_TEXTTABLE_LICENSE = LGPL-3.0+
|
||||
PYTHON_TEXTTABLE_LICENSE_FILES = LICENSE
|
||||
|
||||
$(eval $(python-package))
|
Loading…
Reference in New Issue
Block a user