python310Packages.grpcio-tools 0 -> 1 attrpath: python310Packages.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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/icv7d4clim86qm5zml930g50svgq5nzg-packages.json.drv building '/nix/store/icv7d4clim86qm5zml930g50svgq5nzg-packages.json.drv'... Going to be running update for following packages: - python3.10-grpcio-tools-1.51.1 Press Enter key to continue... Running update for: - python3.10-grpcio-tools-1.51.1: UPDATING ... - python3.10-grpcio-tools-1.51.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/grpcio-tools/default.nix b/pkgs/development/python-modules/grpcio-tools/default.nix index 82e9315aec9..88d7c4b5276 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.51.1"; + version = "1.52.0"; format = "setuptools"; src = fetchPypi { inherit pname version; - sha256 = "8e62d23d3fed9d4f81738f98dd193dbd2e21aed4a8f0dd715e75b5439e649727"; + sha256 = "sha256-wD6X5M1kMnavIQDL3Mn2sTBLHbeeWflXWMMCOj7kvVQ="; }; postPatch = '' No auto update branch exists Old version 1.51.1" not present in staging derivation file with contents: { lib, buildPythonPackage, fetchPypi, protobuf, grpcio, setuptools }: buildPythonPackage rec { pname = "grpcio-tools"; version = "1.52.0"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-wD6X5M1kMnavIQDL3Mn2sTBLHbeeWflXWMMCOj7kvVQ="; }; 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; [ ]; }; }