mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-21 08:44:34 +00:00
15 lines
366 B
Plaintext
15 lines
366 B
Plaintext
# description : Attributes without boilerplate
|
|
# depends : python3 python3-setuptools
|
|
|
|
name=python3-attrs
|
|
version=19.2.0
|
|
release=1
|
|
source=(https://pypi.io/packages/source/a/attrs/attrs-$version.tar.gz)
|
|
md5sum=(d5a6ee80beaa072bd2b3bcb6fee0d508)
|
|
|
|
build() {
|
|
cd attrs-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --root="$PKG" --optimize=1 --skip-build
|
|
}
|