Skip to content

Commit f97c5c8

Browse files
authored
python3Packages.pybind11-protobuf: unbreak (#404719)
2 parents 3e9014d + b5cc0da commit f97c5c8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pkgs/by-name/or/or-tools/package.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ let
2828
abseil-cpp = abseil-cpp_202407;
2929
protobuf = protobuf_29.override { inherit abseil-cpp; };
3030
python-protobuf = python3.pkgs.protobuf5.override { inherit protobuf; };
31-
pybind11-protobuf = python3.pkgs.pybind11-protobuf.override { inherit protobuf; };
31+
pybind11-protobuf = python3.pkgs.pybind11-protobuf.override { protobuf_29 = protobuf; };
3232

3333
in
3434
stdenv.mkDerivation (finalAttrs: {

pkgs/development/python-modules/pybind11-protobuf/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
fetchFromGitHub,
66
cmake,
77
abseil-cpp,
8-
protobuf,
8+
protobuf_29,
99
pybind11,
1010
zlib,
1111
}:
@@ -32,7 +32,7 @@ buildPythonPackage {
3232

3333
buildInputs = [
3434
abseil-cpp
35-
protobuf
35+
protobuf_29
3636
pybind11
3737
zlib
3838
];

0 commit comments

Comments
 (0)