forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST xlutils-1.5.2.tar.gz 48579 SHA256 5b8f2bc41983722a63009c0ab6216227d6bbc0a0f945c9cab33cd1ebac7666d0 SHA512 5611b08516ebcfc08f43b7b5a793c0d53c9e0dfe12b597ea318f10e794d323f87b07df0f96f58b1d4542feb7339ab7c6527c956c7a7af7d8554e41dad85c63d8 WHIRLPOOL 7a1cc3ac03fbcd1c768de6a259adaaf33ca7827af8afc3d11fe03ba462797c0e173071214fbb791d497afb6ffe6577c9eca7a41577da2c51acdc88014d4587d4 | ||
DIST xlutils-1.7.1.tar.gz 62278 SHA256 cdbde90603d626a45bf36d45368e5b83484b545d230fc91f10fad89b2d766384 SHA512 196ec5cf99e7ad5a612c455e4e293461ac89e6e93c28790e34dcce544c8689a9ab122e37458d3b6ff24137c3646607fa8768ab3a4c2fa4a3e2e59e0ac05d675a WHIRLPOOL 769fb30efd2294e3c0205d4134532af5b8633a3566a819cc58a4104d1a4fc4f93a92de1dbc7aa4da7e86a28fb176e65aba3e75f534f12a2e5732057cb5c62d22 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright 1999-2014 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
PYTHON_COMPAT=( python2_7 ) | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="provides a collection of utilities for working with Excel files" | ||
HOMEPAGE="https://pypi.python.org/pypi/xlutils" | ||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" | ||
|
||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" | ||
IUSE="test" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
|
||
RDEPEND=">=dev-python/xlwt-0.7.3[${PYTHON_USEDEP}] | ||
>=dev-python/xlrd-0.7.7[${PYTHON_USEDEP}]" | ||
DEPEND="${RDEPEND} | ||
test? ( dev-python/errorhandler[${PYTHON_USEDEP}] | ||
dev-python/mock[${PYTHON_USEDEP}] | ||
dev-python/pytest[${PYTHON_USEDEP}] | ||
>=dev-python/testfixtures-1.6.1[${PYTHON_USEDEP}] )" | ||
|
||
DOCS="README.txt docs/*.txt" | ||
|
||
python_test() { | ||
py.test xlutils/tests | ||
} |