Merge pull request #173924 from fabaff/tweepy-bump

python310Packages.tweepy: 4.9.0 -> 4.10.0
main
Fabian Affolter 2 years ago committed by GitHub
commit 7d071087d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      pkgs/development/python-modules/tweepy/default.nix

@ -1,5 +1,6 @@
{ lib { lib
, aiohttp , aiohttp
, async-lru
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, oauthlib , oauthlib
@ -12,20 +13,21 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "tweepy"; pname = "tweepy";
version = "4.9.0"; version = "4.10.0";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = pname; owner = pname;
repo = pname; repo = pname;
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-BMRRunPRDW5J/7KU+pr2Uv9Qa6oHBwkA7tsGa5YdzLw="; hash = "sha256-D/cArsGzWr+rCC9iW9qOfc5fT7UKZDupeR/rQMNK5I4=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
aiohttp aiohttp
async-lru
oauthlib oauthlib
requests requests
requests-oauthlib requests-oauthlib
@ -41,8 +43,8 @@ buildPythonPackage rec {
]; ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/tweepy/tweepy";
description = "Twitter library for Python"; description = "Twitter library for Python";
homepage = "https://github.com/tweepy/tweepy";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
}; };

Loading…
Cancel
Save