nixpkgs/pkgs/development/python-modules/tweepy/default.nix

22 lines
555 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, requests, six, requests_oauthlib }:
2018-04-26 06:46:54 +00:00
buildPythonPackage rec {
pname = "tweepy";
version = "3.10.0";
2018-04-26 06:46:54 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "76e6954b806ca470dda877f57db8792fff06a0beba0ed43efc3805771e39f06a";
};
2018-04-26 06:46:54 +00:00
doCheck = false;
propagatedBuildInputs = [ requests six requests_oauthlib ];
meta = with lib; {
homepage = "https://github.com/tweepy/tweepy";
2018-04-26 06:46:54 +00:00
description = "Twitter library for python";
license = licenses.mit;
maintainers = with maintainers; [ ];
2018-04-26 06:46:54 +00:00
};
}