summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/ha-ffmpeg
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/ha-ffmpeg')
-rw-r--r--pkgs/development/python-modules/ha-ffmpeg/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/ha-ffmpeg/default.nix b/pkgs/development/python-modules/ha-ffmpeg/default.nix
index 84810fd2b532..9fd1295733c4 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,17 +12,21 @@ buildPythonPackage rec {
sha256 = "8d92f2f5790da038d828ac862673e0bb43e8e972e4c70b1714dd9a0fb776c8d1";
};
- buildInputs = [ ffmpeg_3 ];
-
propagatedBuildInputs = [ async-timeout ];
# only manual tests
doCheck = false;
+ pythonImportsCheck = [
+ "haffmpeg.camera"
+ "haffmpeg.sensor"
+ "haffmpeg.tools"
+ ];
+
meta = with lib; {
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;
};
}