Add python-rq package

This commit is contained in:
Calin Crisan 2019-01-20 23:31:06 +02:00
parent dc5cf6a2e3
commit 5e2c6ae0c2
4 changed files with 24 additions and 0 deletions

View File

@ -954,6 +954,7 @@ menu "External python modules"
source "package/python-requests-oauthlib/Config.in"
source "package/python-requests-toolbelt/Config.in"
source "package/python-rpi-gpio/Config.in"
source "package/python-rq/Config.in"
source "package/python-rtslib-fb/Config.in"
source "package/python-scandir/Config.in"
source "package/python-scapy3k/Config.in"

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_RQ
bool "python-rq"
depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
help
Simple job queues for Python.
https://python-rq.org/

View File

@ -0,0 +1,2 @@
sha256 2ef7de3fa26a4ce41dcd0561bdba12bb62fa5b9b6d21120122d8dbbe44bb6a77 rq-0.13.0.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-rq
#
################################################################################
PYTHON_RQ_VERSION = 0.13.0
PYTHON_RQ_SOURCE = rq-$(PYTHON_RQ_VERSION).tar.gz
PYTHON_RQ_SITE = https://files.pythonhosted.org/packages/d2/d7/51904875025b2432cb3c97cc476ab8d2033a8f105393db2267622e56f3ac
PYTHON_RQ_SETUP_TYPE = setuptools
PYTHON_RQ_LICENSE = Apache-2.0
PYTHON_RQ_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))