blob: b469ae0276fae9ef4e0e68e4d610c21e233951b1 (
plain)
1 # Description: Canonical JSON
2 # URL: https://pypi.python.org/pypi/canonicaljson/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-frozendict python3-simplejson python3-build python3-installer
5
6 name=python3-canonicaljson
7 version=1.6.4
8 release=1
9 source=(https://github.com/matrix-org/python-canonicaljson/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 cd python-canonicaljson-$version
13 /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
14 /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
15 }
|