From 8bd11cde4dff85592044d217e7b7851e57d45bb3 Mon Sep 17 00:00:00 2001 From: Yureka Date: Sat, 23 Sep 2023 14:26:36 +0200 Subject: [PATCH] matrix-synapse.plugins.matrix-synapse-s3-storage-provider: add missing dependency (#256485) this is required for the s3_media_upload script to work --- pkgs/servers/matrix-synapse/plugins/s3-storage-provider.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/servers/matrix-synapse/plugins/s3-storage-provider.nix b/pkgs/servers/matrix-synapse/plugins/s3-storage-provider.nix index 42d62539b6b3..92e111dbb623 100644 --- a/pkgs/servers/matrix-synapse/plugins/s3-storage-provider.nix +++ b/pkgs/servers/matrix-synapse/plugins/s3-storage-provider.nix @@ -7,6 +7,7 @@ , pythonOlder , tqdm , twisted +, psycopg2 }: buildPythonPackage rec { @@ -37,6 +38,7 @@ buildPythonPackage rec { humanize tqdm twisted + psycopg2 ] # For the s3_media_upload script ++ matrix-synapse-unwrapped.propagatedBuildInputs;