gnu: python-internetarchive: Adjust for newer python.

* gnu/packages/web.scm (python-internetarchive)[source]: Adjust snippet
for change in python module imports.

Change-Id: I523d022f3a56b31b58f80c1ce1ffabaef1f9b0e7
This commit is contained in:
Efraim Flashner 2023-12-05 13:36:48 +02:00
parent f2c6710129
commit 9d1055c409
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -6697,7 +6697,10 @@ (define-public python-internetarchive
(("^import re\n" line)
(string-append line "re._pattern_type = re.Pattern\n"))))
(find-files "." "\\.py$"))
#t))))
;; Mapping got moved to collections.abc
(substitute* "internetarchive/utils.py"
(("from collections import Mapping")
"from collections.abc import Mapping"))))))
(build-system python-build-system)
(arguments
`(#:phases