Merge pull request #222856 from fabaff/twitterapi-bump

python310Packages.twitterapi: 2.8.1 -> 2.8.2

authored by Fabian Affolter and committed by GitHub 96f4084d 95888844

+4 -3
+4 -3
pkgs/development/python-modules/twitterapi/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "twitterapi"; 11 - version = "2.8.1"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; ··· 16 src = fetchFromGitHub { 17 owner = "geduldig"; 18 repo = "TwitterAPI"; 19 - rev = "v${version}"; 20 - hash = "sha256-aBL7k10kZNQG/wNIxO37TbDSlbhrVjTfv2aXcrS2Ibo="; 21 }; 22 23 propagatedBuildInputs = [ ··· 35 meta = with lib; { 36 description = "Python wrapper for Twitter's REST and Streaming APIs"; 37 homepage = "https://github.com/geduldig/TwitterAPI"; 38 license = with licenses; [ mit ]; 39 maintainers = with maintainers; [ fab ]; 40 };
··· 8 9 buildPythonPackage rec { 10 pname = "twitterapi"; 11 + version = "2.8.2"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; ··· 16 src = fetchFromGitHub { 17 owner = "geduldig"; 18 repo = "TwitterAPI"; 19 + rev = "refs/tags/v${version}"; 20 + hash = "sha256-4Z8XfgRhQXawCvaXM+kyMO3fejvXIF2LgVdmfXDDqIA="; 21 }; 22 23 propagatedBuildInputs = [ ··· 35 meta = with lib; { 36 description = "Python wrapper for Twitter's REST and Streaming APIs"; 37 homepage = "https://github.com/geduldig/TwitterAPI"; 38 + changelog = "https://github.com/geduldig/TwitterAPI/blob/v${version}/CHANGE.log"; 39 license = with licenses; [ mit ]; 40 maintainers = with maintainers; [ fab ]; 41 };