blob: 85b30c2ae3f9b1219529913bd49a892fb0e3bf40 (
plain)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
beautifulsoup4,
}:
buildPythonPackage rec {
pname = "google";
version = "3.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-FDUwEi7lEwUJrV6YnwUS98shiy1O3br7rUD9EOjYzL4=";
};
propagatedBuildInputs = [ beautifulsoup4 ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "googlesearch" ];
meta = {
description = "Python bindings to the Google search engine";
mainProgram = "google";
homepage = "https://pypi.org/project/google/";
license = with lib.licenses; [ bsd3 ];
maintainers = with lib.maintainers; [ fab ];
};
}
|