From 704ef2502bc6ebcf3b385a00f6fee8becde0b19b Mon Sep 17 00:00:00 2001 From: Arthur Wambst Date: Tue, 6 May 2025 17:32:35 +0200 Subject: [PATCH] trying stuff --- flake.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index ed2b09e..f243873 100644 --- a/flake.nix +++ b/flake.nix @@ -31,9 +31,7 @@ # Custom function to filter out sphinx when Python version is < 3.11 filterSphinxForOldPython = packages: - if isPython311OrHigher - then packages - else builtins.filter (p: p.pname or "" != "sphinx") packages; + builtins.filter (p: p.pname or "" != "sphinx") packages; # Base Python packages that are always included basePackages = ps: with ps; [