python3Packages.fakeredis: 2.29.0 -> 2.30.3

https://github.com/cunla/fakeredis-py/releases/tag/v2.30.3

This commit was automatically generated using update-python-libraries.

Changed files
+12 -7
pkgs
development
python-modules
fakeredis
+12 -7
pkgs/development/python-modules/fakeredis/default.nix
···
hypothesis,
jsonpath-ng,
lupa,
-
poetry-core,
+
hatchling,
pyprobables,
-
pytest-asyncio,
+
pytest-asyncio_0,
pytest-mock,
pytestCheckHook,
pythonOlder,
···
buildPythonPackage rec {
pname = "fakeredis";
-
version = "2.29.0";
+
version = "2.30.3";
pyproject = true;
disabled = pythonOlder "3.9";
···
owner = "dsoftwareinc";
repo = "fakeredis-py";
tag = "v${version}";
-
hash = "sha256-wBUsoPmTIE3VFvmMnW4B9Unw/V63dIvsBTYCloElamA=";
+
hash = "sha256-SQVLuO5cA+XO7hEBph7XGlnomTcysB3ye9jZ8sy9GAI=";
};
-
build-system = [ poetry-core ];
+
build-system = [ hatchling ];
dependencies = [
redis
···
nativeCheckInputs = [
hypothesis
-
pytest-asyncio
+
pytest-asyncio_0
pytest-mock
pytestCheckHook
redisTestHook
···
disabledTestMarks = [ "slow" ];
+
disabledTests = [
+
"test_init_args" # AttributeError: module 'fakeredis' has no attribute 'FakeValkey'
+
"test_async_init_kwargs" # AttributeError: module 'fakeredis' has no attribute 'FakeAsyncValkey'"
+
];
+
preCheck = ''
redisTestPort=6390
'';
···
meta = with lib; {
description = "Fake implementation of Redis API";
homepage = "https://github.com/dsoftwareinc/fakeredis-py";
-
changelog = "https://github.com/cunla/fakeredis-py/releases/tag/v${version}";
+
changelog = "https://github.com/cunla/fakeredis-py/releases/tag/${src.tag}";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ fab ];
};