mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
Diff: https://github.com/protocolbuffers/protobuf/compare/v34.1...v35.0 Changelog: https://github.com/protocolbuffers/protobuf/releases/
58 lines
1.5 KiB
Nix
58 lines
1.5 KiB
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
lib,
|
|
python,
|
|
setuptools,
|
|
protobuf,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "protobuf";
|
|
version = "7.35.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit (finalAttrs) pname version;
|
|
hash = "sha256-ou/YRgX0HlWfGIGwkStECZ0KKsm/RrNHSCPxD7OTsOY=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
propagatedNativeBuildInputs = [
|
|
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 finalAttrs.version ("7." + protobuf.version);
|
|
# the pypi source archive does not ship tests
|
|
false;
|
|
|
|
pythonImportsCheck = [
|
|
"google.protobuf"
|
|
"google.protobuf.compiler"
|
|
"google.protobuf.internal"
|
|
"google.protobuf.pyext"
|
|
"google.protobuf.testdata"
|
|
"google.protobuf.util"
|
|
"google._upb._message"
|
|
];
|
|
|
|
# Tries to explicitly create a namespace package with pkg_resources,
|
|
# which breaks everything with our PYTHONPATH setup.
|
|
postInstall = ''
|
|
rm $out/${python.sitePackages}/google/__init__.py
|
|
'';
|
|
|
|
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${
|
|
builtins.substring 2 (-1) finalAttrs.version
|
|
}";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ GaetanLepage ];
|
|
};
|
|
})
|