bazarr: Add missing dependency for PostgreSQL DB

Bazarr shipped with Nix currently doesn't support [PostgreSQL connection](https://wiki.bazarr.media/Additional-Configuration/PostgreSQL-Database/), because of this missing dependency
This commit is contained in:
Gabriel Ostrolucký 2024-09-07 22:26:45 +02:00 committed by GitHub
parent 696718aaab
commit 6c1b818838
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
ps.gevent-websocket
ps.pillow
ps.setuptools
ps.psycopg2
]))
] ++ runtimeProgDeps;