mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
python3Packages.ha-ffmpeg: does not depend on ffmpeg_3
The path to the binary is specified in the configuration: https://www.home-assistant.io/integrations/ffmpeg#ffmpeg_bin
This commit is contained in:
parent
8943519645
commit
0897eb3132
1 changed files with 2 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, isPy3k
|
||||
, ffmpeg_3, async-timeout }:
|
||||
, async-timeout }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ha-ffmpeg";
|
||||
|
@ -12,8 +12,6 @@ buildPythonPackage rec {
|
|||
sha256 = "8d92f2f5790da038d828ac862673e0bb43e8e972e4c70b1714dd9a0fb776c8d1";
|
||||
};
|
||||
|
||||
buildInputs = [ ffmpeg_3 ];
|
||||
|
||||
propagatedBuildInputs = [ async-timeout ];
|
||||
|
||||
# only manual tests
|
||||
|
@ -23,6 +21,6 @@ buildPythonPackage rec {
|
|||
homepage = "https://github.com/pvizeli/ha-ffmpeg";
|
||||
description = "Library for home-assistant to handle ffmpeg";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
maintainers = teams.home-assistant.members;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue