
Changelog: https://github.com/protocolbuffers/protobuf/releases/tag/v31.1 Should fix build failures for python3Packages.onnx and its dependents.
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
lib,
|
|
python,
|
|
setuptools,
|
|
protobuf,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "protobuf";
|
|
version = "6.31.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-2MrEyYLwuVek3HOoDi6iT6sI5nnA3p3rg19KEtaaypo=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
propagatedNativeBuildInputs = [
|
|
protobuf
|
|
];
|
|
|
|
# the pypi source archive does not ship tests
|
|
doCheck = 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${version}";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ GaetanLepage ];
|
|
};
|
|
}
|