python3Packages.twitterapi: 2.7.5 -> 2.7.7

This commit is contained in:
Fabian Affolter 2021-11-12 09:22:32 +01:00
parent 7d47dda267
commit 407ac21b1a

View File

@ -7,13 +7,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "twitterapi"; pname = "twitterapi";
version = "2.7.5"; version = "2.7.7";
format = "setuptools";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "geduldig"; owner = "geduldig";
repo = "TwitterAPI"; repo = "TwitterAPI";
rev = "v${version}"; rev = "v${version}";
sha256 = "1s5q3gzd69syk8khlyy7ap8gpymvhgqrlv3vp6vdmwnaafjvvyy3"; sha256 = "sha256-KEJ0lAg6Zi2vps+ZPTkT6ts87qnIBL9pFe1tPEzviCI=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -23,7 +24,10 @@ buildPythonPackage rec {
# Tests are interacting with the Twitter API # Tests are interacting with the Twitter API
doCheck = false; doCheck = false;
pythonImportsCheck = [ "TwitterAPI" ];
pythonImportsCheck = [
"TwitterAPI"
];
meta = with lib; { meta = with lib; {
description = "Python wrapper for Twitter's REST and Streaming APIs"; description = "Python wrapper for Twitter's REST and Streaming APIs";