Unverified Commit 04ee39eb authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #216859 from fabaff/ha-ffmpeg-bump

python310Packages.ha-ffmpeg: 3.0.2 -> 3.1.0
parents 30ed4863 2c63ee45
Loading
Loading
Loading
Loading
+16 −8
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchPypi, isPy3k
, async-timeout }:
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, async-timeout
}:

buildPythonPackage rec {
  pname = "ha-ffmpeg";
  version = "3.0.2";
  version = "3.1.0";
  format = "setuptools";

  disabled = !isPy3k;
  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "8d92f2f5790da038d828ac862673e0bb43e8e972e4c70b1714dd9a0fb776c8d1";
    hash = "sha256-sheNYtmp1panthglpEqJTdaCgGBTUJRswikl5hu9k7s=";
  };

  propagatedBuildInputs = [ async-timeout ];
  propagatedBuildInputs = [
    async-timeout
  ];

  # only manual tests
  doCheck = false;
@@ -24,8 +31,9 @@ buildPythonPackage rec {
  ];

  meta = with lib; {
    homepage = "https://github.com/pvizeli/ha-ffmpeg";
    description = "Library for home-assistant to handle ffmpeg";
    description = "Library for Home Assistant to handle ffmpeg";
    homepage = "https://github.com/home-assistant-libs/ha-ffmpeg/";
    changelog = "https://github.com/home-assistant-libs/ha-ffmpeg/releases/tag/${version}";
    license = licenses.bsd3;
    maintainers = teams.home-assistant.members;
  };