From 02eeb00edd97492ca54e39ca567bbb3d8ab6a582 Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Sat, 15 Jul 2023 14:42:09 +0200 Subject: gnu: pantalaimon: Fix media downloads. * gnu/packages/matrix.scm (pantalaimon)[arguments]: Patch incorrect function invokation that made downloads of attachments impossible --- gnu/packages/matrix.scm | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/matrix.scm b/gnu/packages/matrix.scm index 32ae62fcb4..395f4ba037 100644 --- a/gnu/packages/matrix.scm +++ b/gnu/packages/matrix.scm @@ -266,6 +266,14 @@ fledged batteries-included asyncio layer using aiohttp.") ;; Upgrading python-appdirs requires rebuilting 3000+ packages, ;; when 1.4.4 is a simple maintenance fix from 1.4.3. (("appdirs >= 1.4.4") "appdirs >= 1.4.3")))) + (add-after 'downgrade-appdirs-requirement 'bugfixes + (lambda _ + (substitute* "pantalaimon/daemon.py" + ;; FIXME: Remove this once a pantalaimon version with this fix + ;; is officially released. + ;; https://github.com/matrix-org/pantalaimon/pull/152/commits/d71770ca94981afde8c9be6aaaca951f0685b64e + (("client.download\\(server_name, media_id, file_name\\)") + "client.download(server_name=server_name, media_id=media_id, filename=file_name)")))) (add-after 'install 'install-doc (lambda _ (with-directory-excursion "docs/man" -- cgit v1.2.3