9 buildPythonPackage rec {
10 pname = "youtube-search";
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
17 inherit pname version;
18 hash = "sha256-V0mm2Adv2mVVfJE2fw+rCTYpDs3qRXyDHJ8/BZGKOqI=";
21 propagatedBuildInputs = [ requests ];
23 # Tests require network connection
26 pythonImportsCheck = [ "youtube_search" ];
29 description = "Tool for searching for youtube videos to avoid using their heavily rate-limited API";
30 homepage = "https://github.com/joetats/youtube_search";
31 license = licenses.mit;
32 maintainers = with maintainers; [ j0hax ];