From c00913469dc06a6f36cf7f3b8fb93397a1d70a85 Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Sun, 22 Feb 2026 00:26:40 +0100 Subject: [PATCH] python2Packages.cffi: fix eval This should not matter for anyone I hope, but I saw the typo and I can't let it sit there. --- pkgs/top-level/python2-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python2-packages.nix b/pkgs/top-level/python2-packages.nix index ab674985fe11..9f09c1c044b5 100644 --- a/pkgs/top-level/python2-packages.nix +++ b/pkgs/top-level/python2-packages.nix @@ -11,7 +11,7 @@ with super; bootstrapped-pip = toPythonModule (callPackage ../development/python2-modules/bootstrapped-pip { }); - cffi = disabed super.cffi; + cffi = disabled super.cffi; configparser = disabled super.configparser;