lol

python310Packages.ha-ffmpeg: update meta

authored by

Fabian Affolter and committed by
GitHub
a7b44927 13d8c348

+15 -7
+15 -7
pkgs/development/python-modules/ha-ffmpeg/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy3k 2 - , async-timeout }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 5 + , async-timeout 6 + }: 3 7 4 8 buildPythonPackage rec { 5 9 pname = "ha-ffmpeg"; 6 10 version = "3.1.0"; 11 + format = "setuptools"; 7 12 8 - disabled = !isPy3k; 13 + disabled = pythonOlder "3.7"; 9 14 10 15 src = fetchPypi { 11 16 inherit pname version; 12 - sha256 = "sha256-sheNYtmp1panthglpEqJTdaCgGBTUJRswikl5hu9k7s="; 17 + hash = "sha256-sheNYtmp1panthglpEqJTdaCgGBTUJRswikl5hu9k7s="; 13 18 }; 14 19 15 - propagatedBuildInputs = [ async-timeout ]; 20 + propagatedBuildInputs = [ 21 + async-timeout 22 + ]; 16 23 17 24 # only manual tests 18 25 doCheck = false; ··· 24 31 ]; 25 32 26 33 meta = with lib; { 27 - homepage = "https://github.com/pvizeli/ha-ffmpeg"; 28 - description = "Library for home-assistant to handle ffmpeg"; 34 + description = "Library for Home Assistant to handle ffmpeg"; 35 + homepage = "https://github.com/home-assistant-libs/ha-ffmpeg/"; 36 + changelog = "https://github.com/home-assistant-libs/ha-ffmpeg/releases/tag/3.1.0"; 29 37 license = licenses.bsd3; 30 38 maintainers = teams.home-assistant.members; 31 39 };