python311Packages.grpcio-tools 0 -> 1 attrpath: python311Packages.grpcio-tools 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/36kfpj14788jsm78jcfp18smr3hvsqgs-packages.json.drv building '/nix/store/36kfpj14788jsm78jcfp18smr3hvsqgs-packages.json.drv'... Going to be running update for following packages: - python3.11-grpcio-tools-1.60.1 Press Enter key to continue... Running update for: - python3.11-grpcio-tools-1.60.1: UPDATING ... - python3.11-grpcio-tools-1.60.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/grpcio-tools/default.nix b/pkgs/development/python-modules/grpcio-tools/default.nix index 0437e16a8923..62eae894a267 100644 --- a/pkgs/development/python-modules/grpcio-tools/default.nix +++ b/pkgs/development/python-modules/grpcio-tools/default.nix @@ -2,12 +2,12 @@ buildPythonPackage rec { pname = "grpcio-tools"; - version = "1.60.1"; + version = "1.62.0"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-2ggiSrhnXG1GS5iL2MoCzM0r8Cdbzu/o9iGb/UpPXoU="; + hash = "sha256-f8puz7vwVJBYuyncxuQ12IW4eNB3Aed6xY4eH1kXNtw="; }; postPatch = '' No auto update branch exists Old version 1.60.1" not present in staging derivation file with contents: { lib, buildPythonPackage, fetchPypi, protobuf, grpcio, setuptools }: buildPythonPackage rec { pname = "grpcio-tools"; version = "1.62.0"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-f8puz7vwVJBYuyncxuQ12IW4eNB3Aed6xY4eH1kXNtw="; }; postPatch = '' substituteInPlace setup.py \ --replace 'protobuf>=4.21.6,<5.0dev' 'protobuf' ''; outputs = [ "out" "dev" ]; enableParallelBuilding = true; propagatedBuildInputs = [ protobuf grpcio setuptools ]; # no tests in the package doCheck = false; pythonImportsCheck = [ "grpc_tools" ]; meta = with lib; { description = "Protobuf code generator for gRPC"; license = licenses.asl20; homepage = "https://grpc.io/grpc/python/"; maintainers = with maintainers; [ ]; }; }