2021-08-28 01:04:20 +01:00
|
|
|
{ lib, buildPythonPackage, pythonOlder, fetchPypi, httpx }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "youtube-search-python";
|
2022-03-21 04:17:21 +00:00
|
|
|
version = "1.6.3";
|
2021-08-28 01:04:20 +01:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-03-21 04:17:21 +00:00
|
|
|
sha256 = "sha256-zAza1XMKLIMZFFS0v/4ATqh6j7aEB2Y+eliE/hNPORw=";
|
2021-08-28 01:04:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ httpx ];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "youtubesearchpython" ];
|
|
|
|
|
|
|
|
# project has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Search for YouTube videos, channels & playlists & get video information using link WITHOUT YouTube Data API v3";
|
|
|
|
homepage = "https://github.com/alexmercerind/youtube-search-python";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.marsam ];
|
|
|
|
};
|
|
|
|
}
|