about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorOTABI Tomoya <tomoya.otabi@gmail.com>2023-11-03 14:03:03 +0900
committerGitHub <noreply@github.com>2023-11-03 14:03:03 +0900
commit76dc1874ca35db9f7545fe889ab9df1611797a66 (patch)
treebdb65c4afb242034c36f46bb3955ee9129e5da82 /pkgs
parentad83c5cf4b7b05b134e9698ff3f30069829d7fa6 (diff)
parent44c59cb218cbf955fe194c4cdb1f994e8ebce2d6 (diff)
Merge pull request #261565 from natsukium/python311Packages-questionary-update
python311Packages.questionary: unstable-2022-07-27 -> 2.0.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/questionary/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/questionary/default.nix b/pkgs/development/python-modules/questionary/default.nix
index c355022323fb8..6f9b0488c5d27 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 = [
@@ -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 ];
   };