gentoo/dev-python/humanize/humanize-0.5.1.ebuild
Louis Sautier ea12b4769f
dev-python/humanize: new package, needed for www-apps/klaus
Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1248

Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
2016-04-12 18:55:28 +00:00

26 lines
615 B
Bash

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python{2_7,3_4,3_5} )
inherit distutils-r1
DESCRIPTION="Common humanization utilities"
HOMEPAGE="https://github.com/jmoiron/humanize/"
# Tests are not included in PyPI tarballs
# https://github.com/jmoiron/humanize/issues/33
SRC_URI="https://github.com/jmoiron/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
python_test() {
esetup.py test || die "tests failed with ${EPYTHON}"
}