2022-09-15 22:18:47 -05:00
|
|
|
# Description: Persistent/Immutable/Functional data structures for Python
|
|
|
|
# URL: https://github.com/tobgu/pyrsistent
|
2020-03-19 12:49:07 -05:00
|
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
|
|
# Depends on: python3-six
|
|
|
|
|
|
|
|
name=python3-pyrsistent
|
2023-10-27 17:08:15 -05:00
|
|
|
version=0.20.0
|
2020-03-19 12:49:07 -05:00
|
|
|
release=1
|
2022-09-15 22:18:47 -05:00
|
|
|
source=(https://github.com/tobgu/pyrsistent/archive/v$version/$name-$version.tar.gz)
|
2020-03-19 12:49:07 -05:00
|
|
|
|
|
|
|
build() {
|
2022-09-15 22:18:47 -05:00
|
|
|
cd pyrsistent-$version
|
|
|
|
python3 setup.py build
|
|
|
|
python3 setup.py install --root=$PKG
|
2020-03-19 12:49:07 -05:00
|
|
|
}
|