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

22 lines
554 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";
2020-08-16 17:31:18 +00:00
version = "3.9.0";
2018-04-26 06:46:54 +00:00
src = fetchPypi {
inherit pname version;
2020-08-16 17:31:18 +00:00
sha256 = "bfd19a5c11f35f7f199c795f99d9cbf8a52eb33f0ecfb6c91ee10b601180f604";
};
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
};
}