codesnap: init at 0.8.2 (#364266)
[NixPkgs.git] / pkgs / development / python-modules / youtube-search / default.nix
blob9b575729b34d5cca64d6d7ce47ddc9855df437e5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   requests,
7 }:
9 buildPythonPackage rec {
10   pname = "youtube-search";
11   version = "2.1.2";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-V0mm2Adv2mVVfJE2fw+rCTYpDs3qRXyDHJ8/BZGKOqI=";
19   };
21   propagatedBuildInputs = [ requests ];
23   # Tests require network connection
24   doCheck = false;
26   pythonImportsCheck = [ "youtube_search" ];
28   meta = with lib; {
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 ];
33   };