Merge pull request #241859 from marsam/update-iredis

iredis: 1.13.0 -> 1.13.1
This commit is contained in:
Mario Rodas 2023-07-07 23:11:57 -05:00 committed by GitHub
commit d4d822f526
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,12 +4,12 @@ with python3Packages;
buildPythonApplication rec {
pname = "iredis";
version = "1.13.0";
version = "1.13.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "d1e4e7936d0be456f70a39abeb1c97d931f66ccd60e891f4fd796ffb06dfeaf9";
sha256 = "sha256-MWzbmuxUKh0yBgar1gk8QGJQwbHtINsbCsbTM+RLmQo=";
};
pythonRelaxDeps = [
@ -50,6 +50,9 @@ buildPythonApplication rec {
"--deselect=tests/unittests/test_entry.py::test_command_shell_options_higher_priority"
# Only execute unittests, because cli tests require a running Redis
"tests/unittests/"
] ++ lib.optionals stdenv.isDarwin [
# Flaky test
"--deselect=tests/unittests/test_utils.py::test_timer"
];
pythonImportsCheck = [ "iredis" ];