fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
91 lines
1.7 KiB
Nix
91 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
arrow,
|
|
blessed,
|
|
buildPythonPackage,
|
|
croniter,
|
|
django,
|
|
django-picklefield,
|
|
django-redis,
|
|
fetchFromGitHub,
|
|
future,
|
|
pkgs,
|
|
poetry-core,
|
|
pytest-django,
|
|
pytest-mock,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
redis,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-q";
|
|
version = "1.3.9";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Koed00";
|
|
repo = "django-q";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-gFSrAl3QGoJEJfvTTvLQgViPPjeJ6BfvgEwgLLo+uAA=";
|
|
};
|
|
|
|
# fixes empty version string
|
|
# analog to https://github.com/NixOS/nixpkgs/pull/171200
|
|
patches = [ ./pep-621.patch ];
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
django-picklefield
|
|
arrow
|
|
blessed
|
|
django
|
|
future
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
croniter
|
|
django-redis
|
|
pytest-django
|
|
pytest-mock
|
|
pytestCheckHook
|
|
] ++ django-redis.optional-dependencies.hiredis;
|
|
|
|
pythonImportsCheck = [ "django_q" ];
|
|
|
|
preCheck = ''
|
|
${pkgs.redis}/bin/redis-server &
|
|
REDIS_PID=$!
|
|
'';
|
|
|
|
postCheck = ''
|
|
kill $REDIS_PID
|
|
'';
|
|
|
|
# don't bother with two more servers to test
|
|
disabledTests = [
|
|
"test_disque"
|
|
"test_mongo"
|
|
];
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
meta = with lib; {
|
|
description = "A multiprocessing distributed task queue for Django";
|
|
homepage = "https://django-q.readthedocs.org";
|
|
changelog = "https://github.com/Koed00/django-q/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ gador ];
|
|
# django-q is unmaintained at the moment
|
|
# https://github.com/Koed00/django-q/issues/733
|
|
broken = lib.versionAtLeast redis.version "5";
|
|
};
|
|
}
|