python311Packages.redis 4.5.4 -> 5.0.1 https://repology.org/project/python:redis/versions attrpath: python311Packages.redis Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/9z8wdx3bv6i44hfzawzvbwh47grz7y13-packages.json.drv building '/nix/store/9z8wdx3bv6i44hfzawzvbwh47grz7y13-packages.json.drv'... Going to be running update for following packages: - python3.11-redis-4.5.4 Press Enter key to continue... Running update for: - python3.11-redis-4.5.4: UPDATING ... - python3.11-redis-4.5.4: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/redis/default.nix b/pkgs/development/python-modules/redis/default.nix index d99b25374a13..d987092e48f0 100644 --- a/pkgs/development/python-modules/redis/default.nix +++ b/pkgs/development/python-modules/redis/default.nix @@ -21,14 +21,14 @@ buildPythonPackage rec { pname = "redis"; - version = "4.5.4"; + version = "5.0.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-c+w12k2iZ9aEfkf2hzD91fYuLKaePvWIXGp4qTdMOJM="; + hash = "sha256-DatJXNV1MGnTvGUKDd6Kj57d4W/FaRtomlZu2lgQDQ8="; }; propagatedBuildInputs = [ No auto update branch exists Old version 4.5.4" not present in staging derivation file with contents: { lib , fetchPypi , buildPythonPackage , pythonOlder # propagates , async-timeout , deprecated , importlib-metadata , packaging , typing-extensions # extras: hiredis , hiredis # extras: ocsp , cryptography , pyopenssl , requests }: buildPythonPackage rec { pname = "redis"; version = "5.0.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-XOpsDTNcmnMypGDthynOq7TQxInHKFsKhtu/igF70SA="; }; propagatedBuildInputs = [ async-timeout deprecated packaging typing-extensions ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; passthru.optional-dependencies = { hiredis = [ hiredis ]; ocsp = [ cryptography pyopenssl requests ]; }; pythonImportsCheck = [ "redis" "redis.client" "redis.cluster" "redis.connection" "redis.exceptions" "redis.sentinel" "redis.utils" ]; # Tests require a running redis doCheck = false; meta = with lib; { description = "Python client for Redis key-value store"; homepage = "https://github.com/redis/redis-py"; changelog = "https://github.com/redis/redis-py/releases/tag/v${version}"; license = with licenses; [ mit ]; }; }