18 lines
663 B
Plaintext
18 lines
663 B
Plaintext
# Description: A configurable set of panels that display various debug information about the current request/response
|
|
# URL: https://github.com/jazzband/django-debug-toolbar
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: python3-django python3-hatchling
|
|
|
|
name=python3-django-debug-toolbar
|
|
version=4.3
|
|
release=1
|
|
source=(https://github.com/jazzband/django-debug-toolbar/archive/refs/tags/$version.tar.gz)
|
|
renames=($name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd django-debug-toolbar-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|