blob: 7b6f0376556b4b0a1633b0819baf09dd8a4634de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#
# ~~~ dev-python/cached-property
#
# ~~~ a decorator for caching properties in classes
#
#
# ~~~ metadata
# portage info
EAPI=8
SLOT=0
KEYWORDS="amd64"
# info
HOMEPAGE="https://github.com/pydanny/cached-property/"
DESCRIPTION="A decorator for caching properties in classes"
# package data
SRC_URI="https://github.com/pydanny/cached-property/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
#
# ~~~ dependencies
# python setup
DISTUTILS_USE_PEP517="setuptools"
PYTHON_COMPAT=( python3_{8..14} )
inherit distutils-r1
|