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

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

python311Packages.ha-ffmpeg: 3.1.0 -> 3.2.0: 
parents 0bc0f233 afe1beeb
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -3,20 +3,25 @@
, fetchPypi
, pythonOlder
, async-timeout
, setuptools
}:

buildPythonPackage rec {
  pname = "ha-ffmpeg";
  version = "3.1.0";
  format = "setuptools";
  version = "3.2.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-sheNYtmp1panthglpEqJTdaCgGBTUJRswikl5hu9k7s=";
    hash = "sha256-FW8WlrhVL+ryupHAKii8fKBku/6uxdw1uLCKUszkP50=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    async-timeout
  ];