mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
4c8de690c5
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
22 lines
540 B
Nix
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; [ ];
|
|
};
|
|
}
|