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