about summary refs log tree commit diff
path: root/pkgs/servers/matrix-synapse/plugins
diff options
context:
space:
mode:
authorYureka <yuka@yuka.dev>2023-09-23 14:26:36 +0200
committerGitHub <noreply@github.com>2023-09-23 14:26:36 +0200
commit8bd11cde4dff85592044d217e7b7851e57d45bb3 (patch)
tree795e1b91cb1c526cff55b86c9dc896e630660087 /pkgs/servers/matrix-synapse/plugins
parent79e43fbfbcf05142735f4ec223d21746a710c50f (diff)
matrix-synapse.plugins.matrix-synapse-s3-storage-provider: add missing dependency (#256485)
this is required for the s3_media_upload script to work
Diffstat (limited to 'pkgs/servers/matrix-synapse/plugins')
-rw-r--r--pkgs/servers/matrix-synapse/plugins/s3-storage-provider.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/servers/matrix-synapse/plugins/s3-storage-provider.nix b/pkgs/servers/matrix-synapse/plugins/s3-storage-provider.nix
index 42d62539b6b31..92e111dbb6231 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;