diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-25 12:06:02 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-26 10:37:25 +0000 |
| commit | ed911d2be4d1021d7d2d7bb1279730e80d505c30 (patch) | |
| tree | d3b291866293fb51ba3e3c805de7e3418ce2eb45 | |
| parent | f5664f96cb02524d9c622835363bfb7038fd38cf (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.scm | 7 |
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)) |
