summary refs log tree commit diff
path: root/pkgs/development/python-modules/ha-ffmpeg
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-04-29 20:39:42 +0200
committerRobert Schütz <dev@schuetz-co.de>2021-04-29 20:51:45 +0200
commit0897eb31327ff0132ca944cd47e6ecb9cac053c4 (patch)
tree4393afc3ec49d16d398a0813cd0825d60277593b /pkgs/development/python-modules/ha-ffmpeg
parent89435196454bedc8363b4bdf727bde179b08fcf4 (diff)
downloadnixpkgs-0897eb31327ff0132ca944cd47e6ecb9cac053c4.tar
nixpkgs-0897eb31327ff0132ca944cd47e6ecb9cac053c4.tar.gz
nixpkgs-0897eb31327ff0132ca944cd47e6ecb9cac053c4.tar.bz2
nixpkgs-0897eb31327ff0132ca944cd47e6ecb9cac053c4.tar.lz
nixpkgs-0897eb31327ff0132ca944cd47e6ecb9cac053c4.tar.xz
nixpkgs-0897eb31327ff0132ca944cd47e6ecb9cac053c4.tar.zst
nixpkgs-0897eb31327ff0132ca944cd47e6ecb9cac053c4.zip
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
Diffstat (limited to 'pkgs/development/python-modules/ha-ffmpeg')
-rw-r--r--pkgs/development/python-modules/ha-ffmpeg/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/ha-ffmpeg/default.nix b/pkgs/development/python-modules/ha-ffmpeg/default.nix
index 84810fd2b53..ce1e8a9d237 100644
--- a/pkgs/development/python-modules/ha-ffmpeg/default.nix
+++ b/pkgs/development/python-modules/ha-ffmpeg/default.nix
@@ -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;
   };
 }