mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
ea860254b7
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
83 lines
1.4 KiB
Nix
83 lines
1.4 KiB
Nix
{ arrow
|
|
, blessed
|
|
, buildPythonPackage
|
|
, croniter
|
|
, django
|
|
, django-redis
|
|
, django-picklefield
|
|
, fetchFromGitHub
|
|
, future
|
|
, lib
|
|
, poetry-core
|
|
, pytest-django
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pkgs
|
|
, stdenv
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-q";
|
|
version = "1.3.9";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Koed00";
|
|
repo = "django-q";
|
|
sha256 = "sha256-gFSrAl3QGoJEJfvTTvLQgViPPjeJ6BfvgEwgLLo+uAA=";
|
|
rev = "v${version}";
|
|
};
|
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
propagatedBuildInputs = [
|
|
django-picklefield
|
|
arrow
|
|
blessed
|
|
django
|
|
future
|
|
];
|
|
|
|
# fixes empty version string
|
|
# analog to https://github.com/NixOS/nixpkgs/pull/171200
|
|
patches = [
|
|
./pep-621.patch
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"django_q"
|
|
];
|
|
|
|
preCheck = ''
|
|
${pkgs.redis}/bin/redis-server &
|
|
REDIS_PID=$!
|
|
'';
|
|
|
|
postCheck = ''
|
|
kill $REDIS_PID
|
|
'';
|
|
|
|
checkInputs = [
|
|
croniter
|
|
django-redis
|
|
pytest-django
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
# 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";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ gador ];
|
|
};
|
|
}
|