diff --git a/pkgs/development/python-modules/questionary/default.nix b/pkgs/development/python-modules/questionary/default.nix index 52aab0d5004e..cf43a4234314 100644 --- a/pkgs/development/python-modules/questionary/default.nix +++ b/pkgs/development/python-modules/questionary/default.nix @@ -6,21 +6,18 @@ poetry-core, prompt-toolkit, pytestCheckHook, - pythonOlder, }: buildPythonPackage rec { pname = "questionary"; - version = "2.1.0"; + version = "2.1.1"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "tmbo"; repo = "questionary"; tag = version; - hash = "sha256-HiQsOkG3oK+hnyeFjebnVASxpZhUPGBGz69JvPO43fM="; + hash = "sha256-r7F5y6KD6zonQGtO/9OuCTMTWdkCdd9aqTgKg6eWp08="; }; pythonRelaxDeps = [ "prompt_toolkit" ];