From 5943075c73a91ee153ce72f08e05f47b4b6237bc Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Thu, 8 Jan 2026 17:06:53 -0800 Subject: [PATCH] python3Packages.google-pasta: disable for python 3.14 --- pkgs/development/python-modules/google-pasta/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/google-pasta/default.nix b/pkgs/development/python-modules/google-pasta/default.nix index f252434b319e..13c9f6ba4743 100644 --- a/pkgs/development/python-modules/google-pasta/default.nix +++ b/pkgs/development/python-modules/google-pasta/default.nix @@ -3,6 +3,7 @@ buildPythonPackage, fetchPypi, pytestCheckHook, + pythonAtLeast, setuptools, six, }: @@ -17,6 +18,9 @@ buildPythonPackage rec { hash = "sha256-yfLI38j5bQ1YCCmZIHIb4wye7DfyOJ8okE9FRWXIoW4="; }; + # Hasn't had a release in six years. Effectively unmaintained. + disabled = pythonAtLeast "3.14"; + postPatch = '' substituteInPlace pasta/augment/inline_test.py \ --replace-fail assertRaisesRegexp assertRaisesRegex