{ lib , aiohttp , buildPythonPackage , fetchFromGitHub , oauthlib , pytestCheckHook , pythonOlder , requests , requests-oauthlib , vcrpy }: buildPythonPackage rec { pname = "tweepy"; version = "4.9.0"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-BMRRunPRDW5J/7KU+pr2Uv9Qa6oHBwkA7tsGa5YdzLw="; }; propagatedBuildInputs = [ aiohttp oauthlib requests requests-oauthlib ]; checkInputs = [ pytestCheckHook vcrpy ]; pythonImportsCheck = [ "tweepy" ]; meta = with lib; { homepage = "https://github.com/tweepy/tweepy"; description = "Twitter library for Python"; license = licenses.mit; maintainers = with maintainers; [ ]; }; }