10 buildPythonPackage rec {
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
20 rev = "refs/tags/v${version}";
21 hash = "sha256-4Z8XfgRhQXawCvaXM+kyMO3fejvXIF2LgVdmfXDDqIA=";
24 propagatedBuildInputs = [
29 # Tests are interacting with the Twitter API
32 pythonImportsCheck = [ "TwitterAPI" ];
35 description = "Python wrapper for Twitter's REST and Streaming APIs";
36 homepage = "https://github.com/geduldig/TwitterAPI";
37 changelog = "https://github.com/geduldig/TwitterAPI/blob/v${version}/CHANGE.log";
38 license = with licenses; [ mit ];
39 maintainers = with maintainers; [ fab ];