9 buildPythonPackage rec {
13 disabled = pythonOlder "3.7";
15 format = "setuptools";
17 src = fetchFromGitHub {
21 hash = "sha256-Nvs/YlOjk/P5nd1kpUnCM2n6yiEaqZP830UQI0Ug1rk=";
24 nativeCheckInputs = [ pytestCheckHook ];
26 disabledTests = [ "test_streaming" ];
29 "tests/test_extract.py"
31 "tests/test_streams.py"
35 pythonImportsCheck = [ "pytube" ];
38 description = "Python 3 library for downloading YouTube Videos";
39 mainProgram = "pytube";
40 homepage = "https://github.com/nficano/pytube";
41 license = licenses.mit;
42 maintainers = with maintainers; [ dotlambda ];