cloudsmith-cli 0 -> 1 attrpath: cloudsmith-cli 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/q1gg81q83lwpz86ky4m4dz03s14z1pg7-packages.json.drv building '/nix/store/q1gg81q83lwpz86ky4m4dz03s14z1pg7-packages.json.drv'... Going to be running update for following packages: - cloudsmith-cli-1.1.1 Press Enter key to continue... Running update for: - cloudsmith-cli-1.1.1: UPDATING ... - cloudsmith-cli-1.1.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/tools/cloudsmith-cli/default.nix b/pkgs/development/tools/cloudsmith-cli/default.nix index 58c01f7078a3..bfdb2416bde5 100644 --- a/pkgs/development/tools/cloudsmith-cli/default.nix +++ b/pkgs/development/tools/cloudsmith-cli/default.nix @@ -5,13 +5,13 @@ python3.pkgs.buildPythonApplication rec { pname = "cloudsmith-cli"; - version = "1.1.1"; + version = "1.2.3"; format = "wheel"; src = fetchPypi { pname = "cloudsmith_cli"; inherit format version; - hash = "sha256-evwXXGmGa6V2LhgkmX04E5VvdPxeZzvl4F28auXcSng="; + hash = "sha256-MIoRLWk6G8uchQlGOYOsg3XliZ1wMrYSOhAEQrus+fQ="; }; propagatedBuildInputs = with python3.pkgs; [ An auto update branch exists with message `cloudsmith-cli: 1.1.1 -> 1.2.2`. New version is 1.2.3. The auto update branch does not match or exceed the new version. Old version 1.1.1" not present in master derivation file with contents: { lib , python3 , fetchPypi }: python3.pkgs.buildPythonApplication rec { pname = "cloudsmith-cli"; version = "1.2.2"; format = "wheel"; src = fetchPypi { pname = "cloudsmith_cli"; inherit format version; hash = "sha256-gXbjmnMBx5FuJfWD+jW1KOpNEYit6oqhympN8qwqYlU="; }; propagatedBuildInputs = with python3.pkgs; [ click click-configfile click-didyoumean click-spinner cloudsmith-api colorama future requests requests-toolbelt semver simplejson six setuptools # needs pkg_resources ]; # Wheels have no tests doCheck = false; pythonImportsCheck = [ "cloudsmith_cli" ]; meta = with lib; { homepage = "https://help.cloudsmith.io/docs/cli/"; description = "Cloudsmith Command Line Interface"; mainProgram = "cloudsmith"; changelog = "https://github.com/cloudsmith-io/cloudsmith-cli/blob/v${version}/CHANGELOG.md"; maintainers = with maintainers; [ ]; license = licenses.asl20; platforms = with platforms; unix; }; }