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

Loading…
Cancel
Save