2021-02-05 17:12:51 +00:00
|
|
|
{ lib
|
2020-04-24 23:36:52 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-20 17:08:02 +00:00
|
|
|
, isPy27
|
2020-04-24 23:36:52 +00:00
|
|
|
, requests
|
|
|
|
, lxml
|
|
|
|
, pandas
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytrends";
|
2023-03-15 16:39:30 +00:00
|
|
|
version = "4.9.0";
|
2020-08-20 17:08:02 +00:00
|
|
|
disabled = isPy27; # python2 pandas is too old
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-pU/B4xcUQrPI9cCApeId+Ae8T6rXeQzGK33bBZ6wqUs=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ requests lxml pandas ];
|
|
|
|
|
2021-02-17 17:02:09 +00:00
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pytrends" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Pseudo API for Google Trends";
|
|
|
|
homepage = "https://github.com/GeneralMills/pytrends";
|
|
|
|
license = [ licenses.asl20 ];
|
|
|
|
maintainers = [ maintainers.mmahut ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|