18 lines
622 B
Plaintext
18 lines
622 B
Plaintext
# Description: A high-level Python web framework that encourages rapid development and clean, pragmatic design
|
|
# URL: https://www.djangoproject.com/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: python3-asgiref python3-pytz python3-sqlparse
|
|
# Optional: python3-argon2_cffi python3-psycopg2
|
|
|
|
name=python3-django
|
|
version=5.1
|
|
release=1
|
|
source=(https://pypi.org/packages/source/D/Django/Django-$version.tar.gz)
|
|
|
|
build() {
|
|
cd Django-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|