19 lines
472 B
Plaintext
19 lines
472 B
Plaintext
# Description: ASGI specs, helper code, and adapters
|
|
# URL: https://github.com/django/asgiref/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: python3-typing_extensions
|
|
|
|
name=python3-asgiref
|
|
version=3.8.1
|
|
release=1
|
|
source=(https://pypi.org/packages/source/a/asgiref/asgiref-$version.tar.gz)
|
|
|
|
build() {
|
|
cd asgiref-$version
|
|
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
--skip-build
|
|
}
|