python311Packages.redis 0 -> 1 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/fd3712g3g1rki4gk18z9drlxbv9v6pcd-packages.json.drv building '/nix/store/fd3712g3g1rki4gk18z9drlxbv9v6pcd-packages.json.drv'... Going to be running update for following packages: - python3.11-redis-5.0.1 Press Enter key to continue... Running update for: - python3.11-redis-5.0.1: UPDATING ... - python3.11-redis-5.0.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/redis/default.nix b/pkgs/development/python-modules/redis/default.nix index d987092e48f0..9e583447e101 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 = "5.0.1"; + version = "5.0.3"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-DatJXNV1MGnTvGUKDd6Kj57d4W/FaRtomlZu2lgQDQ8="; + hash = "sha256-SXO650RMD77WSga4dEb3k2HLfk7BU4wCLWlu16UBVYA="; }; propagatedBuildInputs = [ No auto update branch exists Old version 5.0.1" 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.3"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-SXO650RMD77WSga4dEb3k2HLfk7BU4wCLWlu16UBVYA="; }; 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 ]; }; }