about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/youtube-search/default.nix
blob: 439cc31c8c99930405a2fc243aaefea315a8d477 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildPythonPackage, fetchPypi, requests }:

buildPythonPackage rec {
  pname = "youtube-search";
  version = "2.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1541120273996fa433698b2e57b73296dfb8e90536211f29ea997dcf161b66fe";
  };

  propagatedBuildInputs = [ requests ];

  # tests require network connection
  doCheck = false;

  pythonImportsCheck = [ "youtube_search" ];

  meta = with lib; {
    description = "Tool for searching for youtube videos to avoid using their heavily rate-limited API";
    homepage = "https://github.com/joetats/youtube_search";
    license = licenses.mit;
    maintainers = with maintainers; [ j0hax ];
  };
}