Skip to content

Commit

Permalink
Merge pull request #325600 from erictapen/python-python-redis-lock
Browse files Browse the repository at this point in the history
python3Packages.python-redis-lock: fix tests for django support
  • Loading branch information
mweinelt authored Jul 17, 2024
2 parents 3dfa73e + 1df8697 commit ff0584e
Showing 1 changed file with 23 additions and 17 deletions.
40 changes: 23 additions & 17 deletions pkgs/development/python-modules/python-redis-lock/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
pytestCheckHook,
pythonOlder,
redis,
withDjango ? false,
django-redis,
}:

Expand All @@ -21,7 +20,6 @@ buildPythonPackage rec {
version = "4.0.0";

pyproject = true;
build-system = [ setuptools ];

disabled = pythonOlder "3.7";

Expand All @@ -30,35 +28,43 @@ buildPythonPackage rec {
hash = "sha256-Sr0Lz0kTasrWZye/VIbdJJQHjKVeSe+mk/eUB3MZCRo=";
};

# Fix django tests
postPatch = ''
substituteInPlace tests/test_project/settings.py \
--replace "USE_L10N = True" ""
'';

patches = [
# https://github.com/ionelmc/python-redis-lock/pull/119
(fetchpatch {
url = "https://github.com/ionelmc/python-redis-lock/pull/119.diff";
url = "https://github.com/ionelmc/python-redis-lock/commit/ae404b7834990b833c1f0f703ec8fbcfecd201c2.patch";
hash = "sha256-Fo43+pCtnrEMxMdEEdo0YfJGkBlhhH0GjYNgpZeHF3U=";
})

./test_signal_expiration_increase_sleep.patch
];

dependencies = [ redis ] ++ lib.optionals withDjango [ django-redis ];
build-system = [ setuptools ];

dependencies = [ redis ];

optional-dependencies.django = [ django-redis ];

nativeCheckInputs = [
eventlet
gevent
pytestCheckHook
process-tests
pkgs.redis
];
] ++ optional-dependencies.django;

disabledTests =
[
# https://github.com/ionelmc/python-redis-lock/issues/86
"test_no_overlap2"
]
++ lib.optionals stdenv.isDarwin [
# fail on Darwin because it defaults to multiprocessing `spawn`
"test_reset_signalizes"
"test_reset_all_signalizes"
];
# For Django tests
preCheck = "export DJANGO_SETTINGS_MODULE=test_project.settings";

disabledTests = lib.optionals stdenv.isDarwin [
# fail on Darwin because it defaults to multiprocessing `spawn`
"test_reset_signalizes"
"test_reset_all_signalizes"
];

pythonImportsCheck = [ "redis_lock" ];

Expand All @@ -67,6 +73,6 @@ buildPythonPackage rec {
description = "Lock context manager implemented via redis SETNX/BLPOP";
homepage = "https://github.com/ionelmc/python-redis-lock";
license = licenses.bsd2;
maintainers = with maintainers; [ vanschelven ];
maintainers = with maintainers; [ erictapen ];
};
}

0 comments on commit ff0584e

Please sign in to comment.