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

30 lines
570 B
Nix
Raw Normal View History

2019-08-05 14:55:39 +02:00
{ stdenv
, buildPythonPackage
, fetchPypi
, requests
, lxml
, pandas
}:
buildPythonPackage rec {
pname = "pytrends";
2019-10-24 08:47:46 +02:00
version = "4.7.2";
2019-08-05 14:55:39 +02:00
src = fetchPypi {
inherit pname version;
2019-10-24 08:47:46 +02:00
sha256 = "1cf80573276b3a93c4fb2ff296c260fa86e7ab43709473ce34f3bad3841f06df";
2019-08-05 14:55:39 +02: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 ];
};
}