Merge pull request #145698 from fabaff/bump-tweepy

python3Packages.tweepy: 4.0.1 -> 4.3.0
This commit is contained in:
Fabian Affolter 2021-11-13 10:30:30 +01:00 committed by GitHub
commit e0cd6b7ff5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 113 additions and 27 deletions

View File

@ -1,7 +1,30 @@
{ lib, fetchpatch, python3Packages }: { lib
, fetchpatch
, fetchFromGitHub
, python3
}:
with lib; let
with python3Packages; py = python3.override {
packageOverrides = self: super: {
# Support for later tweepy releases is missing
# https://github.com/louipc/turses/issues/12
tweepy = super.tweepy.overridePythonAttrs (oldAttrs: rec {
version = "3.10.0";
src = fetchFromGitHub {
owner = "tweepy";
repo = "tweepy";
rev = "v${version}";
sha256 = "0k4bdlwjna6f1k19jki4xqgckrinkkw8b9wihzymr1l04rwd05nw";
};
doCheck = false;
});
};
};
in
with py.pkgs;
buildPythonPackage rec { buildPythonPackage rec {
pname = "turses"; pname = "turses";
@ -12,8 +35,18 @@ buildPythonPackage rec {
sha256 = "15mkhm3b5ka42h8qph0mhh8izfc1200v7651c62k7ldcs50ib9j6"; sha256 = "15mkhm3b5ka42h8qph0mhh8izfc1200v7651c62k7ldcs50ib9j6";
}; };
checkInputs = [ mock pytest coverage tox ]; propagatedBuildInputs = with py.pkgs; [
propagatedBuildInputs = [ urwid tweepy future ]; urwid
tweepy
future
];
checkInputs = with py.pkgs; [
mock
pytest
coverage
tox
];
LC_ALL = "en_US.UTF-8"; LC_ALL = "en_US.UTF-8";
@ -29,6 +62,17 @@ buildPythonPackage rec {
}) })
]; ];
postPatch = ''
substituteInPlace setup.py \
--replace "urwid==1.3.0" "urwid" \
--replace "future==0.14.3" "future" \
--replace "tweepy==3.3.0" "tweepy"
substituteInPlace tests/test_config.py \
--replace "config.generate_config_file.assert_called_once()" "assert config.generate_config_file.call_count == 1"
substituteInPlace tests/test_meta.py \
--replace "self.observer.update.assert_called_once()" "assert self.observer.update.call_count == 1"
'';
checkPhase = '' checkPhase = ''
TMP_TURSES=`echo turses-$RANDOM` TMP_TURSES=`echo turses-$RANDOM`
mkdir $TMP_TURSES mkdir $TMP_TURSES
@ -36,18 +80,10 @@ buildPythonPackage rec {
rm -rf $TMP_TURSES rm -rf $TMP_TURSES
''; '';
postPatch = ''
sed -i -e 's|urwid==1.3.0|urwid==${getVersion urwid}|' setup.py
sed -i -e "s|future==0.14.3|future==${getVersion future}|" setup.py
sed -i -e "s|tweepy==3.3.0|tweepy==${getVersion tweepy}|" setup.py
sed -i -e "s|config.generate_config_file.assert_called_once()|assert config.generate_config_file.call_count == 1|" tests/test_config.py
sed -i -e "s|self.observer.update.assert_called_once()|assert self.observer.update.call_count == 1|" tests/test_meta.py
'';
meta = with lib; { meta = with lib; {
homepage = "https://github.com/louipc/turses";
description = "A Twitter client for the console"; description = "A Twitter client for the console";
license = licenses.gpl3; homepage = "https://github.com/louipc/turses";
license = licenses.gpl3Only;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
platforms = platforms.unix; platforms = platforms.unix;
}; };

View File

@ -1,20 +1,48 @@
{ lib, buildPythonPackage, fetchPypi, requests, six, requests_oauthlib }: { lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, oauthlib
, requests
, pythonOlder
, vcrpy
, pytestCheckHook
, requests_oauthlib
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "tweepy"; pname = "tweepy";
version = "4.0.1"; version = "4.3.0";
format = "setuptools";
src = fetchPypi { disabled = pythonOlder "3.6";
inherit pname version;
sha256 = "3bbb14a0ddef1ca8c9e8686ab2f647163afa02a6bab83507335ce647e9653a90"; src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "sha256-lS/98DRpJH1UGGNzwqVVUJOeul+BX+I3e+ysmC0oL3I=";
}; };
doCheck = false; propagatedBuildInputs = [
propagatedBuildInputs = [ requests six requests_oauthlib ]; aiohttp
oauthlib
requests
requests_oauthlib
];
checkInputs = [
pytestCheckHook
vcrpy
];
pythonImportsCheck = [
"tweepy"
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/tweepy/tweepy"; homepage = "https://github.com/tweepy/tweepy";
description = "Twitter library for python"; description = "Twitter library for Python";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
}; };

View File

@ -3,7 +3,29 @@
, python3 , python3
}: }:
python3.pkgs.buildPythonApplication rec { let
py = python3.override {
packageOverrides = self: super: {
# Support for later tweepy releases is missing
# https://github.com/ranguli/ioccheck/issues/70
tweepy = super.tweepy.overridePythonAttrs (oldAttrs: rec {
version = "3.10.0";
src = fetchFromGitHub {
owner = "tweepy";
repo = "tweepy";
rev = "v${version}";
sha256 = "0k4bdlwjna6f1k19jki4xqgckrinkkw8b9wihzymr1l04rwd05nw";
};
doCheck = false;
});
};
};
in
with py.pkgs;
buildPythonApplication rec {
pname = "ioccheck"; pname = "ioccheck";
version = "unstable-2021-09-29"; version = "unstable-2021-09-29";
format = "pyproject"; format = "pyproject";
@ -15,11 +37,11 @@ python3.pkgs.buildPythonApplication rec {
sha256 = "0lgqypcd5lzb2yqd5lr02pba24m26ghly4immxgz13svi8f6vzm9"; sha256 = "0lgqypcd5lzb2yqd5lr02pba24m26ghly4immxgz13svi8f6vzm9";
}; };
nativeBuildInputs = with python3.pkgs; [ nativeBuildInputs = with py.pkgs; [
poetry-core poetry-core
]; ];
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs = with py.pkgs; [
backoff backoff
click click
emoji emoji
@ -34,7 +56,7 @@ python3.pkgs.buildPythonApplication rec {
vt-py vt-py
]; ];
checkInputs = with python3.pkgs; [ checkInputs = with py.pkgs; [
pytestCheckHook pytestCheckHook
]; ];