blob: d82622575be7cc7e1b117c9c8341cb4cb45fef0d (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
defusedxml,
requests,
httpretty,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "youtube-transcript-api";
version = "1.2.3";
pyproject = true;
src = fetchFromGitHub {
owner = "jdepoix";
repo = "youtube-transcript-api";
tag = "v${version}";
hash = "sha256-UtKAT7BTWmG2wWnpK5OT/NeVksz6N8sLnRq9IpAm7D4=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [
"defusedxml"
];
dependencies = [
defusedxml
requests
];
nativeCheckInputs = [
httpretty
pytestCheckHook
];
preCheck = ''
export PATH=$out/bin:$PATH
'';
disabledTests = [
# network access
"test_fetch__create_consent_cookie_if_needed"
"test_fetch__with_generic_proxy_reraise_when_blocked"
"test_fetch__with_proxy_retry_when_blocked"
"test_fetch__with_webshare_proxy_reraise_when_blocked"
];
pythonImportsCheck = [ "youtube_transcript_api" ];
meta = {
description = "Python API which allows you to get the transcripts/subtitles for a given YouTube video";
mainProgram = "youtube_transcript_api";
homepage = "https://github.com/jdepoix/youtube-transcript-api";
changelog = "https://github.com/jdepoix/youtube-transcript-api/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|