Unverified Commit 18cc7390 authored by Theodore Ni's avatar Theodore Ni
Browse files

bazarr: add missing setuptools dependency

parent 91eabfa3
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -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 = ''