ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / protobuf / default.nix
blob7034ef322ab598ca55b8d1e9f861482100089e9a
1 { buildPackages
2 , lib
3 , buildPythonPackage
4 , protobuf
5 , pyext
6 , isPyPy
7 }:
9 let
10   versionMajor = lib.versions.major protobuf.version;
11   versionMinor = lib.versions.minor protobuf.version;
12   versionPatch = lib.versions.patch protobuf.version;
14 buildPythonPackage {
15   inherit (protobuf) pname src;
17   # protobuf 3.21 coresponds with its python library 4.21
18   version =
19     if lib.versionAtLeast protobuf.version "3.21"
20     then "${toString (lib.toInt versionMajor + 1)}.${versionMinor}.${versionPatch}"
21     else protobuf.version;
23   disabled = isPyPy;
25   sourceRoot = "source/python";
27   prePatch = ''
28     if [[ "$(<../version.json)" != *'"python": "'"$version"'"'* ]]; then
29       echo "Python library version mismatch. Derivation version: $version, actual: $(<../version.json)"
30       exit 1
31     fi
32   '';
34   nativeBuildInputs = [ pyext ];
36   buildInputs = [ protobuf ];
38   propagatedNativeBuildInputs = [
39     # For protoc of the same version.
40     buildPackages."protobuf${lib.versions.major protobuf.version}_${lib.versions.minor protobuf.version}"
41   ];
43   setupPyGlobalFlags = "--cpp_implementation";
45   pythonImportsCheck = [
46     "google.protobuf"
47     "google.protobuf.internal._api_implementation" # Verify that --cpp_implementation worked
48   ];
50   passthru = {
51     inherit protobuf;
52   };
54   meta = with lib; {
55     description = "Protocol Buffers are Google's data interchange format";
56     homepage = "https://developers.google.com/protocol-buffers/";
57     license = licenses.bsd3;
58     maintainers = with maintainers; [ knedlsepp ];
59   };