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";
|
2019-07-20 14:43:06 +01:00
|
|
|
version = "3.8.0";
|
2018-04-26 07:46:54 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-07-20 14:43:06 +01:00
|
|
|
sha256 = "0sri92mzhkifn16klkk2mhc2vcrvdmfp2wvkpfss518sln5q5gca";
|
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
|
|
|
};
|
|
|
|
}
|