guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 6831c2dab94cbbb08c4a0f890bcadbd66f88df9b
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Feb 13 23:28:23 2026 +0100
gnu: python-protobuf: Remove unused input.
* gnu/packages/protobuf.scm (python-protobuf)[inputs]: Remove protobuf-3.20.
Change-Id: If2c9c7c8eafed5ad6fcbd4e4a9c1e6f5e956089a
---
gnu/packages/protobuf.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm
index 6b174a8d4f..309a6a6f55 100644
--- a/gnu/packages/protobuf.scm
+++ b/gnu/packages/protobuf.scm
@@ -589,8 +589,8 @@ mechanism for serializing structured data.")
(native-inputs
(list python-setuptools))
;; The C++ implementation is not compatible with Python 3.11, so we cannot
- ;; pass --cpp_implementation any more.
- (inputs (list protobuf-3.20))
+ ;; pass --cpp_implementation any more. Without that flag, only the pure
+ ;; Python implementation is built and the C++ protobuf library is not
needed.
(home-page "https://github.com/google/protobuf")
(synopsis "Protocol buffers is a data interchange format")
(description