bazarr: add missing setuptools dependency

This commit is contained in:
Theodore Ni 2023-08-26 10:58:08 -07:00
parent 91eabfa3a9
commit 18cc739078
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474

View File

@ -20,7 +20,14 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ unzip makeWrapper ];
buildInputs = [
(python3.withPackages (ps: [ ps.lxml ps.numpy ps.gevent ps.gevent-websocket ps.pillow ]))
(python3.withPackages (ps: [
ps.lxml
ps.numpy
ps.gevent
ps.gevent-websocket
ps.pillow
ps.setuptools
]))
] ++ runtimeProgDeps;
installPhase = ''