2018-04-25 23:46:54 -07:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, requests, six, requests_oauthlib }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "tweepy";
|
2018-04-25 23:53:00 -07:00
|
|
|
version = "3.6.0";
|
2018-04-25 23:46:54 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-04-25 23:53:00 -07:00
|
|
|
sha256 = "901500666de5e265d93e611dc05066bb020481c85550d6bcbf8030212938902c";
|
2018-04-25 23:46:54 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ requests six requests_oauthlib ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = https://github.com/tweepy/tweepy;
|
|
|
|
description = "Twitter library for python";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ garbas ];
|
|
|
|
};
|
|
|
|
}
|