Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 21 lines 554 B view raw
1{ lib, buildPythonPackage, fetchPypi, requests, six, requests_oauthlib }: 2 3buildPythonPackage rec { 4 pname = "tweepy"; 5 version = "3.9.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "bfd19a5c11f35f7f199c795f99d9cbf8a52eb33f0ecfb6c91ee10b601180f604"; 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}