28 lines
747 B
Nix
28 lines
747 B
Nix
{ lib, buildPythonPackage, pythonOlder, fetchPypi, httpx }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "youtube-search-python";
|
|
version = "1.4.8";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "aafa940d77ecd37bb7af802da53caed9be8861c6abe3004abb04315155b4a3ad";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|