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

22 lines
559 B
Nix
Raw Normal View History

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