summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-25 12:06:02 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-26 10:37:25 +0000
commited911d2be4d1021d7d2d7bb1279730e80d505c30 (patch)
treed3b291866293fb51ba3e3c805de7e3418ce2eb45
parentf5664f96cb02524d9c622835363bfb7038fd38cf (diff)
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
-rw-r--r--gnu/packages/protobuf.scm7
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm
index 51e983cd004..fdb355f5bff 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))