linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / tweepy / default.nix
blob1c5535ec079b6fa26a9f2400b02f1c2d137c4b1a
1 { lib, buildPythonPackage, fetchPypi, requests, six, requests_oauthlib }:
3 buildPythonPackage rec {
4   pname = "tweepy";
5   version = "3.9.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "bfd19a5c11f35f7f199c795f99d9cbf8a52eb33f0ecfb6c91ee10b601180f604";
10   };
12   doCheck = false;
13   propagatedBuildInputs = [ requests six requests_oauthlib ];
15   meta = with lib; {
16     homepage = "https://github.com/tweepy/tweepy";
17     description = "Twitter library for python";
18     license = licenses.mit;
19     maintainers = with maintainers; [ ];
20   };