blob: 1612ca3d2b42e9779fa06de81f5891d4b6916faf (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pytube";
version = "15.0.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "pytube";
repo = "pytube";
rev = "v${version}";
hash = "sha256-Nvs/YlOjk/P5nd1kpUnCM2n6yiEaqZP830UQI0Ug1rk=";
};
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [ "test_streaming" ];
disabledTestPaths = [
"tests/test_extract.py"
"tests/test_query.py"
"tests/test_streams.py"
"tests/test_main.py"
];
pythonImportsCheck = [ "pytube" ];
meta = {
description = "Python 3 library for downloading YouTube Videos";
mainProgram = "pytube";
homepage = "https://github.com/nficano/pytube";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|