22 lines
542 B
Nix
22 lines
542 B
Nix
|
{ lib, buildPythonPackage, fetchPypi, requests, six, requests_oauthlib }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "tweepy";
|
||
|
version = "3.8.0";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "0sri92mzhkifn16klkk2mhc2vcrvdmfp2wvkpfss518sln5q5gca";
|
||
|
};
|
||
|
|
||
|
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; [ ];
|
||
|
};
|
||
|
}
|