about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2024-07-07 00:53:56 +0200
committerGitHub <noreply@github.com>2024-07-07 00:53:56 +0200
commit3203320d75a3966e7fdd1b8fed3b942dc1583fe9 (patch)
tree1d2837db347d7d66d632797ea07d4bb605c74c75 /pkgs
parent2d3f28ccd65f7d51f4e7c9338384b6bcefe55043 (diff)
parent9d99ba241c9ff8c84ed4c96ee406cce4aacfba14 (diff)
Merge pull request #320045 from GetPsyched/python-inquirer
python3Packages.inquirer: fix minimum Python version
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/inquirer/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/inquirer/default.nix b/pkgs/development/python-modules/inquirer/default.nix
index f7974e2282746..8b65de7cfe35a 100644
--- a/pkgs/development/python-modules/inquirer/default.nix
+++ b/pkgs/development/python-modules/inquirer/default.nix
@@ -23,7 +23,7 @@ buildPythonPackage rec {
   version = "3.2.5";
   format = "pyproject";
 
-  disabled = pythonOlder "3.7";
+  disabled = pythonOlder "3.8";
 
   src = fetchFromGitHub rec {
     owner = "magmax";