From 23cd1b80e1f622aaa08f6d277582e8d9f69f922b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Sun, 18 Jan 2026 15:11:36 +0100 Subject: [PATCH] glances: remove superfluous pythonOlder --- pkgs/applications/system/glances/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/applications/system/glances/default.nix b/pkgs/applications/system/glances/default.nix index 5c25b9ebaabf..856f9ea8fab9 100644 --- a/pkgs/applications/system/glances/default.nix +++ b/pkgs/applications/system/glances/default.nix @@ -3,7 +3,6 @@ buildPythonApplication, fetchFromGitHub, isPyPy, - pythonOlder, lib, defusedxml, packaging, @@ -31,7 +30,7 @@ buildPythonApplication rec { version = "4.3.3"; pyproject = true; - disabled = isPyPy || pythonOlder "3.9"; + disabled = isPyPy; src = fetchFromGitHub { owner = "nicolargo";