1{ lib, buildPythonPackage, fetchPypi, fetchpatch, requests, six, requests_oauthlib }:
2
3buildPythonPackage rec {
4 pname = "tweepy";
5 version = "3.7.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b";
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; [ garbas ];
20 };
21}