nixpkgs/pkgs/development/python-modules/tweepy/default.nix
R. RyanTM 4c8de690c5 python37Packages.tweepy: 3.7.0 -> 3.8.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-tweepy/versions
2019-07-20 06:43:06 -07:00

22 lines
540 B
Nix

{ lib, buildPythonPackage, fetchPypi, requests, six, requests_oauthlib }:
buildPythonPackage rec {
pname = "tweepy";
version = "3.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "0sri92mzhkifn16klkk2mhc2vcrvdmfp2wvkpfss518sln5q5gca";
};
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; [ ];
};
}