guix_mirror_bot pushed a commit to branch master
in repository guix.

commit ed911d2be4d1021d7d2d7bb1279730e80d505c30
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Oct 25 12:06:02 2025 +0100

    gnu: python-protobuf: Switch to pyproject.
    
    * gnu/packages/protobuf.scm (python-protobuf)[build-system]: Switch to
    pyproject-build-system.
    [native-inputs]: Add python-setuptools.
    
    Change-Id: Ia3cc2b575f81bcf03638db899b13dec1757ec3c8
---
 gnu/packages/protobuf.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm
index 51e983cd00..fdb355f5bf 100644
--- a/gnu/packages/protobuf.scm
+++ b/gnu/packages/protobuf.scm
@@ -564,7 +564,12 @@ mechanism for serializing structured data.")
        (sha256
         (base32
          "1wh5f4rnzbv46xy1rx62cprhg5hqf2py06s9b7rfpzwwki12fd1f"))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
+    (arguments
+     (list
+      #:tests? #f)) ; no tests provided for Python variant
+    (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))

Reply via email to