ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / youtube-search-python / default.nix
blob11da850c992d3de6bcb5201c96cf270b600e4834
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
5 , httpx
6 }:
8 buildPythonPackage rec {
9   pname = "youtube-search-python";
10   version = "1.6.6";
11   format = "setuptools";
13   disabled = pythonOlder "3.6";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-RWjR12ns1+tLuDZfBO7G42TF9w7sezdl9UPa67E1/PU=";
18   };
20   propagatedBuildInputs = [
21     httpx
22   ];
24   pythonImportsCheck = [
25     "youtubesearchpython"
26   ];
28   # Project has no tests
29   doCheck = false;
31   meta = with lib; {
32     description = "Search for YouTube videos, channels & playlists & get video information using link without YouTube Data API";
33     homepage = "https://github.com/alexmercerind/youtube-search-python";
34     license = licenses.mit;
35     maintainers = with maintainers; [ marsam ];
36   };