From 6143b4172be76426a7ec05f111fcb876da7054bd Mon Sep 17 00:00:00 2001 From: natsukium Date: Mon, 16 Oct 2023 18:05:41 +0900 Subject: [PATCH 1/2] python311Packages.questionary: unstable-2022-07-27 -> 2.0.1 Diff: https://github.com/tmbo/questionary/compare/848b040c5b7086ffe75bd92c656e15e94d905146...2.0.1 Changelog: https://github.com/tmbo/questionary/blob/2.0.1/docs/pages/changelog.rst --- pkgs/development/python-modules/questionary/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/questionary/default.nix b/pkgs/development/python-modules/questionary/default.nix index c355022323fb..40c3beb6bb4c 100644 --- a/pkgs/development/python-modules/questionary/default.nix +++ b/pkgs/development/python-modules/questionary/default.nix @@ -10,16 +10,16 @@ buildPythonPackage rec { pname = "questionary"; - version = "unstable-2022-07-27"; + version = "2.0.1"; format = "pyproject"; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "tmbo"; repo = pname; - rev = "848b040c5b7086ffe75bd92c656e15e94d905146"; - hash = "sha256-W0d1Uoy5JdN3BFfeyk1GG0HBzmgKoBApaGad0UykZaY="; + rev = "refs/tags/${version}"; + hash = "sha256-JY0kXomgiGtOrsXfRf0756dTPVgud91teh+jW+kFNdk="; }; nativeBuildInputs = [ From 44c59cb218cbf955fe194c4cdb1f994e8ebce2d6 Mon Sep 17 00:00:00 2001 From: natsukium Date: Tue, 17 Oct 2023 14:25:38 +0900 Subject: [PATCH 2/2] python311Packages.questionary: add changelog to meta --- pkgs/development/python-modules/questionary/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/questionary/default.nix b/pkgs/development/python-modules/questionary/default.nix index 40c3beb6bb4c..6f9b0488c5d2 100644 --- a/pkgs/development/python-modules/questionary/default.nix +++ b/pkgs/development/python-modules/questionary/default.nix @@ -50,6 +50,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python library to build command line user prompts"; homepage = "https://github.com/tmbo/questionary"; + changelog = "https://github.com/tmbo/questionary/blob/${src.rev}/docs/pages/changelog.rst"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; };