2019-06-16 12:59:06 -07:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, requests, six, requests_oauthlib }:
|
2018-04-25 23:46:54 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "tweepy";
|
2021-03-24 02:28:31 -07:00
|
|
|
version = "3.10.0";
|
2018-04-25 23:46:54 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 02:28:31 -07:00
|
|
|
sha256 = "76e6954b806ca470dda877f57db8792fff06a0beba0ed43efc3805771e39f06a";
|
2018-04-25 23:53:27 -07:00
|
|
|
};
|
|
|
|
|
2018-04-25 23:46:54 -07:00
|
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ requests six requests_oauthlib ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/tweepy/tweepy";
|
2018-04-25 23:46:54 -07:00
|
|
|
description = "Twitter library for python";
|
|
|
|
license = licenses.mit;
|
2019-07-03 02:27:39 -07:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-04-25 23:46:54 -07:00
|
|
|
};
|
|
|
|
}
|