diff options
author | 2016-08-06 16:09:07 +0200 | |
---|---|---|
committer | 2016-08-06 16:09:54 +0200 | |
commit | 851dbea24e54001ca654ebf886f57f11b8b0224a (patch) | |
tree | 43d2821c8dcda13c82c754cc581e27958997cfb5 /dev-python/cached-property/cached-property-1.3.0.ebuild | |
parent | subversion.eclass: support for EAPI 6 (diff) | |
download | gentoo-851dbea24e54001ca654ebf886f57f11b8b0224a.tar.gz gentoo-851dbea24e54001ca654ebf886f57f11b8b0224a.tar.bz2 gentoo-851dbea24e54001ca654ebf886f57f11b8b0224a.zip |
dev-python/cached-property: Version bump
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-python/cached-property/cached-property-1.3.0.ebuild')
-rw-r--r-- | dev-python/cached-property/cached-property-1.3.0.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/cached-property/cached-property-1.3.0.ebuild b/dev-python/cached-property/cached-property-1.3.0.ebuild new file mode 100644 index 000000000000..935a4b066c43 --- /dev/null +++ b/dev-python/cached-property/cached-property-1.3.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} ) + +inherit distutils-r1 + +DESCRIPTION="A cached-property for decorating methods in classes" +HOMEPAGE="https://github.com/pydanny/cached-property" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="test? ( + dev-python/pytest + dev-python/freezegun + )" +RDEPEND="" + +src_install() { + distutils-r1_src_install + dodoc README.rst HISTORY.rst CONTRIBUTING.rst AUTHORS.rst +} + +python_test() { + py.test || die +} |