2022-12-27T09:37:10 python310Packages.fakeredis 0 -> 1 2022-12-27T09:37:12 attrpath: python310Packages.fakeredis 2022-12-27T09:37:12 Checking auto update branch... 2022-12-27T09:37:17 [version] 2022-12-27T09:37:17 [version] skipping because derivation has updateScript 2022-12-27T09:37:17 [rustCrateVersion] 2022-12-27T09:37:17 [rustCrateVersion] No cargoSha256 found 2022-12-27T09:37:17 [golangModuleVersion] 2022-12-27T09:37:17 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-12-27T09:37:17 [updateScript] 2022-12-27T09:37:19 [updateScript] Success 2022-12-27T09:37:19 [updateScript] this derivation will be built: /nix/store/ly1s34lzsrmyxfsbqd883y5k5ng2yg92-packages.json.drv building '/nix/store/ly1s34lzsrmyxfsbqd883y5k5ng2yg92-packages.json.drv'... Going to be running update for following packages: - python3.10-fakeredis-2.3.0 Press Enter key to continue... Running update for: - python3.10-fakeredis-2.3.0: UPDATING ... - python3.10-fakeredis-2.3.0: DONE. Packages updated! 2022-12-27T09:37:19 2022-12-27T09:37:19 [quotedUrls] 2022-12-27T09:37:19 [quotedUrls] nothing found to replace 2022-12-27T09:37:20 Diff after rewrites: diff --git a/pkgs/development/python-modules/fakeredis/default.nix b/pkgs/development/python-modules/fakeredis/default.nix index dfde6be5c4c..a0f68ea0da6 100644 --- a/pkgs/development/python-modules/fakeredis/default.nix +++ b/pkgs/development/python-modules/fakeredis/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "fakeredis"; - version = "2.3.0"; + version = "2.4.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "dsoftwareinc"; repo = "fakeredis-py"; rev = "refs/tags/v${version}"; - hash = "sha256-3CHBSjuvpH614Hag+8EWzpvVcdx140/NvsQHf3DyzZM="; + hash = "sha256-LKUDwx3EEcOQFhUjTe5xm3AQRuwTGsYY27Vmg2R9ofc="; }; nativeBuildInputs = [ 2022-12-27T09:38:47 Old version 2.3.0" not present in master derivation file with contents: { lib , aioredis , buildPythonPackage , fetchFromGitHub , hypothesis , lupa , poetry-core , pytest-asyncio , pytestCheckHook , pytest-mock , pythonOlder , redis , six , sortedcontainers }: buildPythonPackage rec { pname = "fakeredis"; version = "2.4.0"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "dsoftwareinc"; repo = "fakeredis-py"; rev = "refs/tags/v${version}"; hash = "sha256-LKUDwx3EEcOQFhUjTe5xm3AQRuwTGsYY27Vmg2R9ofc="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ redis six sortedcontainers ]; checkInputs = [ hypothesis pytest-asyncio pytest-mock pytestCheckHook ]; passthru.optional-dependencies = { lua = [ lupa ]; aioredis = [ aioredis ]; }; pythonImportsCheck = [ "fakeredis" ]; 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}"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; }