Merge pull request #66069 from mmahut/pytrends
pythonPackages.pytrends: init at 4.6.0
This commit is contained in:
commit
2b49f9cc8a
29
pkgs/development/python-modules/pytrends/default.nix
Normal file
29
pkgs/development/python-modules/pytrends/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, requests
|
||||||
|
, lxml
|
||||||
|
, pandas
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pytrends";
|
||||||
|
version = "4.6.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "03gnn2mgjvpc7pbcijy7xilrhgjg7x2pp6ci96pdyqnhkqv02d3n";
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests lxml pandas ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Pseudo API for Google Trends";
|
||||||
|
homepage = "https://github.com/GeneralMills/pytrends";
|
||||||
|
license = [ licenses.asl20 ];
|
||||||
|
maintainers = [ maintainers.mmahut ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -1069,6 +1069,8 @@ in {
|
|||||||
|
|
||||||
pytricia = callPackage ../development/python-modules/pytricia { };
|
pytricia = callPackage ../development/python-modules/pytricia { };
|
||||||
|
|
||||||
|
pytrends = callPackage ../development/python-modules/pytrends { };
|
||||||
|
|
||||||
py-vapid = callPackage ../development/python-modules/py-vapid { };
|
py-vapid = callPackage ../development/python-modules/py-vapid { };
|
||||||
|
|
||||||
PyWebDAV = callPackage ../development/python-modules/pywebdav { };
|
PyWebDAV = callPackage ../development/python-modules/pywebdav { };
|
||||||
|
Loading…
Reference in New Issue
Block a user