diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-30 18:46:27 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-08-06 10:06:36 +0200 |
| commit | 249c30a131a3042db318e2add5ebbc889be2a34c (patch) | |
| tree | 22437d7e875a4ac1f6f2efbc365a20c11b46ce4f | |
| parent | 2cfd2e1386b6ef228dde99cf5a8b7a04529a1436 (diff) | |
gnu: Add python-protobuf-4.
* gnu/packages/protobuf.scm (python-protobuf-4): New variable.
Signed-off-by: Andreas Enge <andreas@enge.fr>
| -rw-r--r-- | gnu/packages/protobuf.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm index 6ac17d37339..765836cf655 100644 --- a/gnu/packages/protobuf.scm +++ b/gnu/packages/protobuf.scm @@ -465,6 +465,17 @@ from protobuf specification files.") mechanism for serializing structured data.") (license license:bsd-3))) +(define-public python-protobuf-4 + (package/inherit python-protobuf-5 + (name "python-protobuf") + (version "4.21.6") + (source + (origin + (method url-fetch) + (uri (pypi-uri "protobuf" version)) + (sha256 + (base32 "1pabwidv12r73fy0jlslpgi60zd1lbx9rjnb23kgdm8wcsjl043b")))))) + (define-public python-protobuf (package (name "python-protobuf") |
