about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/google/default.nix
blob: 3dc2cdb345148b018ad90409a82a94c2d5fd9b95 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib
, buildPythonPackage
, fetchPypi
, beautifulsoup4
, pythonOlder
}:

buildPythonPackage rec {
  pname = "google";
  version = "3.0.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-FDUwEi7lEwUJrV6YnwUS98shiy1O3br7rUD9EOjYzL4=";
  };

  propagatedBuildInputs = [
    beautifulsoup4
  ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [
    "googlesearch"
  ];

  meta = with lib; {
    description = "Python bindings to the Google search engine";
    mainProgram = "google";
    homepage = "https://pypi.org/project/google/";
    license = with licenses; [ bsd3 ];
    maintainers = with maintainers; [ fab ];
  };
}