iredis: 1.13.0 -> 1.13.1
Changelog: https://github.com/laixintao/iredis/raw/v1.13.1/CHANGELOG.md
This commit is contained in:
parent
839b78afa5
commit
928b608f36
1 changed files with 5 additions and 2 deletions
|
@ -4,12 +4,12 @@ with python3Packages;
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "iredis";
|
pname = "iredis";
|
||||||
version = "1.13.0";
|
version = "1.13.1";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "d1e4e7936d0be456f70a39abeb1c97d931f66ccd60e891f4fd796ffb06dfeaf9";
|
sha256 = "sha256-MWzbmuxUKh0yBgar1gk8QGJQwbHtINsbCsbTM+RLmQo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
|
@ -50,6 +50,9 @@ buildPythonApplication rec {
|
||||||
"--deselect=tests/unittests/test_entry.py::test_command_shell_options_higher_priority"
|
"--deselect=tests/unittests/test_entry.py::test_command_shell_options_higher_priority"
|
||||||
# Only execute unittests, because cli tests require a running Redis
|
# Only execute unittests, because cli tests require a running Redis
|
||||||
"tests/unittests/"
|
"tests/unittests/"
|
||||||
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
# Flaky test
|
||||||
|
"--deselect=tests/unittests/test_utils.py::test_timer"
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "iredis" ];
|
pythonImportsCheck = [ "iredis" ];
|
||||||
|
|
Loading…
Reference in a new issue