python3Packages.pytrends: disable python2

This commit is contained in:
Jonathan Ringer
2020-08-15 12:06:52 -07:00
parent b7be00ad5e
commit 898f945772

View File

@@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
, requests
, lxml
, pandas
@@ -9,6 +10,7 @@
buildPythonPackage rec {
pname = "pytrends";
version = "4.7.3";
disabled = isPy27; # python2 pandas is too old
src = fetchPypi {
inherit pname version;