python312Packages.protobuf: 5.28.0 -> 5.28.1

Diff: https://github.com/protocolbuffers/protobuf/compare/v28.0...v28.1

Changelog: https://github.com/protocolbuffers/protobuf/releases/v28.1
This commit is contained in:
Gaetan Lepage
2024-09-11 22:33:39 +02:00
parent 349dd99ac7
commit d72ee974ef
@@ -7,12 +7,12 @@
buildPythonPackage rec {
pname = "protobuf";
version = "5.28.0";
version = "5.28.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-3edK8Pp3T6mIkiCZkila2/uR2j+pjI9nqIr+j1o0mt0=";
hash = "sha256-Qll+k4+Du38+SzXwOqRSCNSa6NW8tLwQufyCXgq15CM=";
};
build-system = [ setuptools ];
@@ -30,10 +30,11 @@ buildPythonPackage rec {
"google._upb._message"
];
meta = with lib; {
meta = {
description = "Protocol Buffers are Google's data interchange format";
homepage = "https://developers.google.com/protocol-buffers/";
license = licenses.bsd3;
maintainers = with maintainers; [ SuperSandro2000 ];
changelog = "https://github.com/protocolbuffers/protobuf/releases/v${version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
};
}