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