nixpkgs/pkgs/development/python-modules/ha-ffmpeg/default.nix

29 lines
657 B
Nix
Raw Normal View History

{ lib, stdenv, buildPythonPackage, fetchPypi, isPy3k
, ffmpeg_3, async-timeout }:
2018-02-28 05:39:47 +00:00
buildPythonPackage rec {
pname = "ha-ffmpeg";
version = "3.0.2";
2018-02-28 05:39:47 +00:00
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "8d92f2f5790da038d828ac862673e0bb43e8e972e4c70b1714dd9a0fb776c8d1";
2018-02-28 05:39:47 +00:00
};
buildInputs = [ ffmpeg_3 ];
2018-02-28 05:39:47 +00:00
propagatedBuildInputs = [ async-timeout ];
# only manual tests
doCheck = false;
meta = with lib; {
homepage = "https://github.com/pvizeli/ha-ffmpeg";
2018-02-28 05:39:47 +00:00
description = "Library for home-assistant to handle ffmpeg";
license = licenses.bsd3;
maintainers = with maintainers; [ peterhoeg ];
};
}