Files
nixpkgs/pkgs/by-name/au/auto-editor/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

51 lines
1.1 KiB
Nix

{
lib,
python3Packages,
fetchFromGitHub,
yt-dlp,
}:
python3Packages.buildPythonApplication rec {
pname = "auto-editor";
version = "28.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "WyattBlue";
repo = "auto-editor";
tag = version;
hash = "sha256-ozw5ZPvKP7aTBBItQKNx85hZ1T4IxX9NYCcNHC5UuuM=";
};
postPatch = ''
substituteInPlace auto_editor/__main__.py \
--replace-fail '"yt-dlp"' '"${lib.getExe yt-dlp}"'
'';
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [
basswood-av
numpy
];
checkPhase = ''
runHook preCheck
$out/bin/auto-editor test all
runHook postCheck
'';
pythonImportsCheck = [ "auto_editor" ];
meta = {
changelog = "https://github.com/WyattBlue/auto-editor/releases/tag/${src.tag}";
description = "Command line application for automatically editing video and audio by analyzing a variety of methods, most notably audio loudness";
homepage = "https://auto-editor.com/";
license = lib.licenses.unlicense;
mainProgram = "auto-editor";
maintainers = with lib.maintainers; [ tomasajt ];
};
}