diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm index 112b9b1fb1..23feef7ba5 100644 --- a/gnu/packages/protobuf.scm +++ b/gnu/packages/protobuf.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2014, 2022 Ludovic Courtès ;;; Copyright © 2016 Daniel Pimentel ;;; Copyright © 2016 Leo Famulari -;;; Copyright © 2017, 2018, 2019, 2022 Ricardo Wurmus +;;; Copyright © 2017, 2018, 2019, 2022, 2023 Ricardo Wurmus ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice ;;; Copyright © 2020, 2021, 2022, 2023 Maxim Cournoyer ;;; Copyright © 2020 Vinicius Monego @@ -469,8 +469,19 @@ (define-public python-protobuf-3.6 (sha256 (base32 "04bqb12smlckzmgkj6vgmpbr3cby0n6726cmz33bqr7kn1vb728l")))) - (arguments '()) ;no "--cpp_implementation" here - (inputs (list python-six)))) + (arguments + (list + #:phases + '(modify-phases %standard-phases + (add-after 'unpack 'compatibility + (lambda _ + (substitute* '("google/protobuf/internal/containers.py" + "google/protobuf/internal/well_known_types.py") + (("collections.Mutable") + "collections.abc.Mutable"))))))) + (inputs (list python-six)) + (native-inputs + (list python-setuptools-for-tensorflow)))) (define-public python-proto-plus (package