9 buildPythonPackage rec {
10 pname = "google-search-results";
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
18 pname = builtins.replaceStrings [ "-" ] [ "_" ] pname;
19 hash = "sha256-YDow7K4q+OYAsiY1dXpt8nXa1Lk0+XXmeHjM1kC3gkU=";
22 propagatedBuildInputs = [ requests ];
24 # almost all tests require an API key or network access
27 pythonImportsCheck = [ "serpapi" ];
30 description = "Scrape and search localized results from Google, Bing, Baidu, Yahoo, Yandex, Ebay, Homedepot, youtube at scale using SerpApi.com";
31 homepage = "https://github.com/serpapi/google-search-results-python";
32 changelog = "https://github.com/serpapi/google-search-results-python/releases/tag/${version}";
33 license = licenses.mit;
34 maintainers = with maintainers; [ natsukium ];