python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / google / default.nix
blob8d558930027939cf195fa8ad895c21db4d5687ed
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   beautifulsoup4,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "google";
11   version = "3.0.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-FDUwEi7lEwUJrV6YnwUS98shiy1O3br7rUD9EOjYzL4=";
19   };
21   propagatedBuildInputs = [ beautifulsoup4 ];
23   # Module has no tests
24   doCheck = false;
26   pythonImportsCheck = [ "googlesearch" ];
28   meta = with lib; {
29     description = "Python bindings to the Google search engine";
30     mainProgram = "google";
31     homepage = "https://pypi.org/project/google/";
32     license = with licenses; [ bsd3 ];
33     maintainers = with maintainers; [ fab ];
34   };