diff --git a/pkgs/development/python-modules/pylitterbot/default.nix b/pkgs/development/python-modules/pylitterbot/default.nix index dcd863d08bfc..ecd60bb6907f 100644 --- a/pkgs/development/python-modules/pylitterbot/default.nix +++ b/pkgs/development/python-modules/pylitterbot/default.nix @@ -3,29 +3,30 @@ aiohttp, aioresponses, buildPythonPackage, + deepdiff, fetchFromGitHub, poetry-core, poetry-dynamic-versioning, + pycognito, pyjwt, pytest-aiohttp, pytest-freezegun, pytestCheckHook, pythonOlder, - deepdiff, }: buildPythonPackage rec { pname = "pylitterbot"; - version = "2023.5.0"; + version = "2023.5.1"; pyproject = true; - disabled = pythonOlder "3.9"; + disabled = pythonOlder "3.10"; src = fetchFromGitHub { owner = "natekspencer"; repo = "pylitterbot"; rev = "refs/tags/v${version}"; - hash = "sha256-MSQdX2PKQohmPGqtRZnUmCCVgKgaf4+cHAUItiPv7pY="; + hash = "sha256-Mpqa7pMxnFdSL1KGTUbgjh1zd8bAcoyzgxRZZ4SGfYc="; }; pythonRelaxDeps = [ "deepdiff" ]; @@ -38,6 +39,7 @@ buildPythonPackage rec { dependencies = [ aiohttp deepdiff + pycognito pyjwt ];