18 lines
635 B
Plaintext
18 lines
635 B
Plaintext
# Description: A multiprocessing distributed task queue for Django based on Django-Q
|
|
# URL: https://github.com/django-q2/django-q2
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: python3-django-picklefield python3-poetry
|
|
# Optional: python3-blessed python3-boto3 python3-hiredis python3-psutil python3-pymongo python3-setproctitle
|
|
|
|
name=python3-django-q2
|
|
version=1.6.2
|
|
release=1
|
|
source=(https://pypi.org/packages/source/d/django_q2/django_q2-$version.tar.gz)
|
|
|
|
build() {
|
|
cd django_q2-$version
|
|
|
|
/usr/bin/python3 -m poetry build
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|