Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 21 lines 540 B view raw
1{ lib, buildPythonPackage, fetchPypi, requests, six, requests_oauthlib }: 2 3buildPythonPackage rec { 4 pname = "tweepy"; 5 version = "3.8.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0sri92mzhkifn16klkk2mhc2vcrvdmfp2wvkpfss518sln5q5gca"; 10 }; 11 12 doCheck = false; 13 propagatedBuildInputs = [ requests six requests_oauthlib ]; 14 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 }; 21}