11 buildPythonPackage rec {
14 format = "setuptools";
17 src = fetchFromGitHub {
20 rev = "refs/tags/v${version}";
21 hash = "sha256-VE4OFFpNR9txCyhs6Ye36DBWb8DNlCT1BO436KwFMY8=";
24 propagatedBuildInputs = [
31 pythonImportsCheck = [
35 doCheck = false; # require redis-server
38 description = "Simple app that provides django integration for RQ (Redis Queue)";
39 homepage = "https://github.com/rq/django-rq";
40 changelog = "https://github.com/rq/django-rq/releases/tag/v${version}";
41 license = licenses.mit;
42 maintainers = with maintainers; [ hexa ];