blob: 79037bcbb49186e3be66cb9dfd16095185ea7044 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
uv-build,
tqdm,
pytest-asyncio,
pytestCheckHook,
ffmpeg,
procps,
versionCheckHook,
}:
buildPythonPackage rec {
pname = "ffmpeg-progress-yield";
version = "1.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "slhck";
repo = "ffmpeg-progress-yield";
tag = "v${version}";
hash = "sha256-lAnTDA8YAqT7ZtRyxTtEZ8vK/OSz6mhpFXy6LURsU3E=";
};
build-system = [ uv-build ];
dependencies = [
tqdm
];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
ffmpeg
procps
];
disabledTests = lib.optional stdenv.hostPlatform.isDarwin [
# cannot access /usr/bin/pgrep from the sandbox
"test_context_manager"
"test_context_manager_with_exception"
"test_automatic_cleanup_on_exception"
"test_async_context_manager"
"test_async_context_manager_with_exception"
"test_async_automatic_cleanup_on_exception"
];
pythonImportsCheck = [ "ffmpeg_progress_yield" ];
nativeInstallCheckInputs = [ versionCheckHook ];
doInstallCheck = true;
meta = {
description = "Run an ffmpeg command with progress";
mainProgram = "ffmpeg-progress-yield";
homepage = "https://github.com/slhck/ffmpeg-progress-yield";
changelog = "https://github.com/slhck/ffmpeg-progress-yield/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ prusnak ];
};
}
|