1{ lib, buildPythonPackage, fetchPypi, requests, six, requests_oauthlib }:
2
3buildPythonPackage rec {
4 pname = "tweepy";
5 version = "3.10.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "76e6954b806ca470dda877f57db8792fff06a0beba0ed43efc3805771e39f06a";
10 };
11
12 doCheck = false;
13 propagatedBuildInputs = [ requests six requests_oauthlib ];
14
15 meta = with lib; {
16 homepage = "https://github.com/tweepy/tweepy";
17 description = "Twitter library for python";
18 license = licenses.mit;
19 maintainers = with maintainers; [ ];
20 };
21}