Unverified Commit cc7f4c0c authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python312Packages.ha-ffmpeg: 3.2.0 -> 3.2.1 (#349822)

parents abc12d1f a3af944d
Loading
Loading
Loading
Loading
+9 −7
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  fetchFromGitHub,
  pythonOlder,
  async-timeout,
  setuptools,
@@ -9,19 +9,21 @@

buildPythonPackage rec {
  pname = "ha-ffmpeg";
  version = "3.2.0";
  version = "3.2.1";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-FW8WlrhVL+ryupHAKii8fKBku/6uxdw1uLCKUszkP50=";
  src = fetchFromGitHub {
    owner = "home-assistant-libs";
    repo = "ha-ffmpeg";
    rev = "refs/tags/${version}";
    hash = "sha256-Yu23kRChPbq/9sKvu9uY4qtKXX7CVNagZX9Z6ZzDqcw=";
  };

  nativeBuildInputs = [ setuptools ];
  build-system = [ setuptools ];

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

  # only manual tests
  doCheck = false;