nixpkgs/pkgs/development/python-modules/tweepy/default.nix

22 lines
540 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, requests, six, requests_oauthlib }:
2018-04-26 06:46:54 +00:00
buildPythonPackage rec {
pname = "tweepy";
version = "3.8.0";
2018-04-26 06:46:54 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0sri92mzhkifn16klkk2mhc2vcrvdmfp2wvkpfss518sln5q5gca";
};
2018-04-26 06:46:54 +00:00
doCheck = false;
propagatedBuildInputs = [ requests six requests_oauthlib ];
meta = with lib; {
homepage = https://github.com/tweepy/tweepy;
description = "Twitter library for python";
license = licenses.mit;
maintainers = with maintainers; [ ];
2018-04-26 06:46:54 +00:00
};
}