blob: 36aaae33dfea32aae9d2f6a868faf66eab9ad529 [file] [log] [blame]
Prathmesh Prabhu0f5a7ee2014-11-14 16:51:05 -08001# Copyright 2014 The Chromium OS Authors. All rights reserved.
2# Distributed under the terms of the GNU General Public License v2
3
4EAPI=5
5
6PYTHON_COMPAT=( python2_7 )
7
8inherit distutils-r1 eutils
9
10DESCRIPTION="A Python client for statsd"
11HOMEPAGE="https://pypi.python.org/pypi/python-statsd https://github.com/WoLpH/python-statsd"
12SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
13
14LICENSE="MIT"
15SLOT="0"
16KEYWORDS="*"
17# Upstream does not have the default DOCS expected by distutils.
18DOCS=""
19
20DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
21RDEPEND=""
22
23src_prepare () {
24 epatch "${FILESDIR}"/${P}-skip-tests-in-install.patch
25}