2018-04-26 07:46:54 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, requests, six, requests_oauthlib }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "tweepy";
|
2018-04-26 07:53:00 +01:00
|
|
|
version = "3.6.0";
|
2018-04-26 07:46:54 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-04-26 07:53:00 +01:00
|
|
|
sha256 = "901500666de5e265d93e611dc05066bb020481c85550d6bcbf8030212938902c";
|
2018-04-26 07:46:54 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|