{ lib , buildPythonPackage , pythonOlder , fetchFromGitHub , pytestCheckHook }: buildPythonPackage rec { pname = "pytube"; version = "10.8.5"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "pytube"; repo = "pytube"; rev = "v${version}"; sha256 = "05w2jlrm1kqki3yq4ssf3ydmy0sf4zcychz94wxsppgr2xrghnhn"; }; checkInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "pytube" ]; meta = with lib; { description = "Python 3 library for downloading YouTube Videos"; homepage = "https://github.com/nficano/pytube"; license = licenses.mit; maintainers = with maintainers; [ dotlambda ]; }; }