nixpkgs/pkgs/development/python-modules/pytrends/default.nix

32 lines
628 B
Nix
Raw Normal View History

2019-08-05 13:55:39 +01:00
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
2019-08-05 13:55:39 +01:00
, requests
, lxml
, pandas
}:
buildPythonPackage rec {
pname = "pytrends";
2020-06-05 18:44:37 +01:00
version = "4.7.3";
disabled = isPy27; # python2 pandas is too old
2019-08-05 13:55:39 +01:00
src = fetchPypi {
inherit pname version;
2020-06-05 18:44:37 +01:00
sha256 = "8ccb06c57c31fa157b978a0d810de7718ee46583d28cf818250d45f36abd2faa";
2019-08-05 13:55:39 +01:00
};
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 ];
};
}