Loading pkgs/development/python-modules/protobuf/6.nix +9 −3 Original line number Diff line number Diff line Loading @@ -23,8 +23,12 @@ buildPythonPackage rec { protobuf ]; doCheck = # https://protobuf.dev/support/cross-version-runtime-guarantee/#backwards # The non-python protobuf provides the protoc binary which must not be newer. assert lib.versionAtLeast version ("6." + protobuf.version); # the pypi source archive does not ship tests doCheck = false; false; pythonImportsCheck = [ "google.protobuf" Loading @@ -45,7 +49,9 @@ buildPythonPackage rec { meta = { description = "Protocol Buffers are Google's data interchange format"; homepage = "https://developers.google.com/protocol-buffers/"; changelog = "https://github.com/protocolbuffers/protobuf/releases/v${version}"; changelog = "https://github.com/protocolbuffers/protobuf/releases/v${ builtins.substring 2 (-1) version }"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ GaetanLepage ]; }; Loading Loading
pkgs/development/python-modules/protobuf/6.nix +9 −3 Original line number Diff line number Diff line Loading @@ -23,8 +23,12 @@ buildPythonPackage rec { protobuf ]; doCheck = # https://protobuf.dev/support/cross-version-runtime-guarantee/#backwards # The non-python protobuf provides the protoc binary which must not be newer. assert lib.versionAtLeast version ("6." + protobuf.version); # the pypi source archive does not ship tests doCheck = false; false; pythonImportsCheck = [ "google.protobuf" Loading @@ -45,7 +49,9 @@ buildPythonPackage rec { meta = { description = "Protocol Buffers are Google's data interchange format"; homepage = "https://developers.google.com/protocol-buffers/"; changelog = "https://github.com/protocolbuffers/protobuf/releases/v${version}"; changelog = "https://github.com/protocolbuffers/protobuf/releases/v${ builtins.substring 2 (-1) version }"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ GaetanLepage ]; }; Loading