python3Packages.grpcio-tools: relax protobuf constraint

This commit is contained in:
Martin Weinelt 2022-09-28 18:13:22 +02:00
parent 7e40546eb6
commit ccce3fcb58
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -9,6 +9,11 @@ buildPythonPackage rec {
sha256 = "1178f2ea531f80cc2027ec64728df6ffc8e98cf1df61652a496eafd612127183";
};
postPatch = ''
substituteInPlace setup.py \
--replace 'protobuf>=3.12.0, < 4.0dev' 'protobuf'
'';
outputs = [ "out" "dev" ];
enableParallelBuilding = true;