1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, requests
5, lxml
6, pandas
7}:
8
9buildPythonPackage rec {
10 pname = "pytrends";
11 version = "4.6.0";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "03gnn2mgjvpc7pbcijy7xilrhgjg7x2pp6ci96pdyqnhkqv02d3n";
16 };
17
18 doCheck = false;
19
20 propagatedBuildInputs = [ requests lxml pandas ];
21
22 meta = with stdenv.lib; {
23 description = "Pseudo API for Google Trends";
24 homepage = "https://github.com/GeneralMills/pytrends";
25 license = [ licenses.asl20 ];
26 maintainers = [ maintainers.mmahut ];
27 };
28
29}