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

22 lines
552 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";
2018-12-14 22:20:39 +00:00
version = "3.7.0";
2018-04-26 06:46:54 +00:00
src = fetchPypi {
inherit pname version;
2018-12-14 22:20:39 +00:00
sha256 = "fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b";
};
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
};
}