ffsubsync: nixfmt

This commit is contained in:
André Breda 2024-08-08 08:40:38 +01:00 committed by Doron Behar
parent cead2ccdc6
commit 1ca92c5641

View File

@ -1,6 +1,7 @@
{ lib {
, fetchFromGitHub lib,
, python3 fetchFromGitHub,
python3,
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
@ -15,9 +16,7 @@ python3.pkgs.buildPythonApplication rec {
hash = "sha256-ZdKZeKfAUe/FXLOur9Btb5RgXewmy3EHunQphqlxpIc="; hash = "sha256-ZdKZeKfAUe/FXLOur9Btb5RgXewmy3EHunQphqlxpIc=";
}; };
nativeBuildInputs = with python3.pkgs; [ nativeBuildInputs = with python3.pkgs; [ setuptools ];
setuptools
];
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs = with python3.pkgs; [
auditok auditok
@ -36,13 +35,9 @@ python3.pkgs.buildPythonApplication rec {
webrtcvad webrtcvad
]; ];
nativeCheckInputs = with python3.pkgs; [ nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ];
pytestCheckHook
];
pythonImportsCheck = [ pythonImportsCheck = [ "ffsubsync" ];
"ffsubsync"
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/smacke/ffsubsync"; homepage = "https://github.com/smacke/ffsubsync";