python-xlutils: 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 2016-06-29 08:27:05 +02:00 committed by Thomas Petazzoni
parent abf0cd2871
commit 0a17720cbd
4 changed files with 28 additions and 0 deletions

View file

@ -788,6 +788,7 @@ menu "External python modules"
source "package/python-wsaccel/Config.in"
source "package/python-xlrd/Config.in"
source "package/python-xlsxwriter/Config.in"
source "package/python-xlutils/Config.in"
source "package/python-xlwt/Config.in"
source "package/python-zope-interface/Config.in"
endmenu

View file

@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_XLUTILS
bool "python-xlutils"
select BR2_PACKAGE_PYTHON_XLRD # runtime
select BR2_PACKAGE_PYTHON_XLWT # runtime
help
Utilities for working with Excel files that require both
xlrd and xlwt.
http://www.python-excel.org

View file

@ -0,0 +1,4 @@
# md5 from https://pypi.python.org/pypi/xlutils/json
md5 7a6a339ddaacabce244341582ee61353 xlutils-2.0.0.tar.gz
# sha256 calculated by scanpypi
sha256 7e0e2c233bd185fecf5e2bd3f4e9469ca4a3bd87da64c82cfe5b2af27e7f9e54 xlutils-2.0.0.tar.gz

View file

@ -0,0 +1,14 @@
################################################################################
#
# python-xlutils
#
################################################################################
PYTHON_XLUTILS_VERSION = 2.0.0
PYTHON_XLUTILS_SOURCE = xlutils-$(PYTHON_XLUTILS_VERSION).tar.gz
PYTHON_XLUTILS_SITE = https://pypi.python.org/packages/93/fe/af6d73e4bc7b0ce359d34bebb2e8d4d129763acfecd66a3a7efc587e54c9
PYTHON_XLUTILS_SETUP_TYPE = setuptools
PYTHON_XLUTILS_LICENSE = MIT
PYTHON_XLUTILS_LICENSE_FILES = xlutils/license.txt
$(eval $(python-package))