blob: b8fd9f5a789d56fa47082a8796c963578cb5ccc8 (
plain)
1 # Description: Persistent/Immutable/Functional data structures for Python
2 # URL: https://github.com/tobgu/pyrsistent
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: python3-six
5
6 name=python3-pyrsistent
7 version=0.19.2
8 release=1
9 source=(https://github.com/tobgu/pyrsistent/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 cd pyrsistent-$version
13 python3 setup.py build
14 python3 setup.py install --root=$PKG
15 }
|