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

python311Packages.ha-ffmpeg: 3.1.0 -> 3.2.0:
This commit is contained in:
Fabian Affolter 2024-03-14 21:11:31 +01:00 committed by GitHub
commit fcb4c65cf8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
];