From 60acdc429f3fee2628377233e38c045277c255a9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 29 Aug 2025 22:23:15 +0200 Subject: [PATCH] python313Packages.questionary: 2.1.0 -> 2.1.1 Diff: https://github.com/tmbo/questionary/compare/2.1.0...2.1.1 Changelog: https://github.com/tmbo/questionary/blob/refs/tags/2.1.1/docs/pages/changelog.rst --- pkgs/development/python-modules/questionary/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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" ];