Merge pull request #310172 from fabaff/fakeredis-bump

python312Packages.fakeredis: 2.21.3 -> 2.23.0

authored by Fabian Affolter and committed by GitHub ecb1b930 18198ef6

+30 -38
+30 -38
pkgs/development/python-modules/fakeredis/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , hypothesis 5 - , jsonpath-ng 6 - , lupa 7 - , poetry-core 8 - , pybloom-live 9 - , pyprobables 10 - , pytest-asyncio 11 - , pytest-mock 12 - , pytestCheckHook 13 - , pythonOlder 14 - , redis 15 - , sortedcontainers 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + hypothesis, 6 + jsonpath-ng, 7 + lupa, 8 + poetry-core, 9 + pybloom-live, 10 + pyprobables, 11 + pytest-asyncio, 12 + pytest-mock, 13 + pytestCheckHook, 14 + pythonOlder, 15 + redis, 16 + sortedcontainers, 16 17 }: 17 18 18 19 buildPythonPackage rec { 19 20 pname = "fakeredis"; 20 - version = "2.21.3"; 21 + version = "2.23.0"; 21 22 pyproject = true; 22 23 23 24 disabled = pythonOlder "3.7"; ··· 26 27 owner = "dsoftwareinc"; 27 28 repo = "fakeredis-py"; 28 29 rev = "refs/tags/v${version}"; 29 - hash = "sha256-GIg+a8G5S0dmbvMKqS/Vn+wzNM6iNIs3bKPqhecsQt4="; 30 + hash = "sha256-qiqJO8uZ3vy9TpTHmExlUoQ78avPVqlKn0jgvDsKdP0="; 30 31 }; 31 32 32 - nativeBuildInputs = [ 33 - poetry-core 34 - ]; 33 + build-system = [ poetry-core ]; 35 34 36 - propagatedBuildInputs = [ 35 + dependencies = [ 37 36 redis 38 37 sortedcontainers 39 38 ]; ··· 46 45 ]; 47 46 48 47 passthru.optional-dependencies = { 49 - lua = [ 50 - lupa 51 - ]; 52 - json = [ 53 - jsonpath-ng 54 - ]; 55 - bf = [ 56 - pyprobables 57 - ]; 58 - cf = [ 59 - pyprobables 60 - ]; 61 - probabilistic = [ 62 - pyprobables 63 - ]; 48 + lua = [ lupa ]; 49 + json = [ jsonpath-ng ]; 50 + bf = [ pyprobables ]; 51 + cf = [ pyprobables ]; 52 + probabilistic = [ pyprobables ]; 64 53 }; 65 54 66 - pythonImportsCheck = [ 67 - "fakeredis" 55 + pythonImportsCheck = [ "fakeredis" ]; 56 + 57 + disabledTests = [ 58 + # AssertionError 59 + "test_command" 68 60 ]; 69 61 70 62 meta = with lib; {