awscli 0 -> 1 attrpath: awscli 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] Going to be running update for following packages: - awscli-1.30.2 Press Enter key to continue... Running update for: - awscli-1.30.2: UPDATING ... - awscli-1.30.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/tools/admin/awscli/default.nix b/pkgs/tools/admin/awscli/default.nix index 7bbc1e14efbe..ec502e4a249d 100644 --- a/pkgs/tools/admin/awscli/default.nix +++ b/pkgs/tools/admin/awscli/default.nix @@ -10,11 +10,11 @@ python3.pkgs.buildPythonApplication rec { pname = "awscli"; - version = "1.30.2"; # N.B: if you change this, change botocore and boto3 to a matching version too + version = "1.32.11"; # N.B: if you change this, change botocore and boto3 to a matching version too src = fetchPypi { inherit pname version; - hash = "sha256-XbYsPbYUIJPCS+nhcE3A5K7yxHcGUkulT5vHPT5T9kM="; + hash = "sha256-tWi/S+piqq7TTBmCTV+ZHZkRvQKOmE27JFp4dptqByQ="; }; An auto update branch exists with message `awscli: 1.30.2 -> 1.31.13`. New version is 1.32.11. The auto update branch does not match or exceed the new version. Old version 1.30.2" not present in staging derivation file with contents: { lib , python3 , fetchPypi , groff , less , nix-update-script , testers , awscli }: python3.pkgs.buildPythonApplication rec { pname = "awscli"; version = "1.31.6"; # N.B: if you change this, change botocore and boto3 to a matching version too src = fetchPypi { inherit pname version; hash = "sha256-PINiNkP2vopPgc9bH0x7mifeUt7gdXi3/i2Ye96RANg="; }; propagatedBuildInputs = with python3.pkgs; [ botocore bcdoc s3transfer colorama docutils rsa pyyaml groff less ]; postInstall = '' mkdir -p $out/share/bash-completion/completions echo "complete -C $out/bin/aws_completer aws" > $out/share/bash-completion/completions/awscli mkdir -p $out/share/zsh/site-functions mv $out/bin/aws_zsh_completer.sh $out/share/zsh/site-functions rm $out/bin/aws.cmd ''; doInstallCheck = true; installCheckPhase = '' runHook preInstallCheck $out/bin/aws --version | grep "${python3.pkgs.botocore.version}" $out/bin/aws --version | grep "${version}" runHook postInstallCheck ''; passthru = { python = python3; # for aws_shell updateScript = nix-update-script { # Excludes 1.x versions from the Github tags list extraArgs = [ "--version-regex" "^(1\.(.*))" ]; }; tests.version = testers.testVersion { package = awscli; command = "aws --version"; inherit version; }; }; meta = with lib; { homepage = "https://aws.amazon.com/cli/"; changelog = "https://github.com/aws/aws-cli/blob/${version}/CHANGELOG.rst"; description = "Unified tool to manage your AWS services"; license = licenses.asl20; mainProgram = "aws"; maintainers = with maintainers; [ anthonyroussel ]; }; }