blob: 9ed15f0bab836785b639d0a6439fe00fff0f0c49 (
plain)
1 # Description: A decorator for caching properties in classes
2 # URL: https://pypi.org/project/cached-property/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: python3-setuptools
5
6 name=python3-cached-property
7 version=1.5.2
8 release=1
9 source=(https://pypi.python.org/packages/source/c/cached-property/cached-property-$version.tar.gz)
10
11 build() {
12 cd cached-property-$version
13 python3 setup.py build
14 python3 setup.py install --root=$PKG
15 }
|