Files
Martin Weinelt 24a48da674 python3Packages.django-rq: 3.0.1 -> 3.1
https://github.com/rq/django-rq/releases/tag/v3.1

This commit was automatically generated using update-python-libraries.
2025-08-09 18:59:08 +02:00

54 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
django,
redis,
rq,
prometheus-client,
sentry-sdk,
psycopg,
pytest-django,
pytestCheckHook,
redisTestHook,
}:
buildPythonPackage rec {
pname = "django-rq";
version = "3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "rq";
repo = "django-rq";
tag = "v${version}";
hash = "sha256-TnOKgw52ykKcR0gHXcdYfv77js7I63PE1F3POdwJgvc=";
};
build-system = [ hatchling ];
dependencies = [
django
redis
rq
];
optional-dependencies = {
prometheus = [ prometheus-client ];
sentry = [ sentry-sdk ];
};
pythonImportsCheck = [ "django_rq" ];
doCheck = false; # require redis-server
meta = with lib; {
description = "Simple app that provides django integration for RQ (Redis Queue)";
homepage = "https://github.com/rq/django-rq";
changelog = "https://github.com/rq/django-rq/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}