python3Packages.ufmt: fix cli tests by fetching upstream patch

https://github.com/omnilib/ufmt/issues/260
This commit is contained in:
Gaetan Lepage
2025-10-24 18:33:39 +00:00
parent 4426506dab
commit 8904efe3ce
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch2,
# build-system
flit-core,
@@ -37,12 +38,16 @@ buildPythonPackage rec {
hash = "sha256-oEvvXUju7qne3pCwnrckplMs0kBJavB669qieXJZPKw=";
};
# Broken since click was updated to 8.2.1 in https://github.com/NixOS/nixpkgs/pull/448189
# TypeError: CliRunner.__init__() got an unexpected keyword argument 'mix_stderr'
postPatch = ''
substituteInPlace ufmt/tests/__init__.py \
--replace-fail "from .cli import CliTest" ""
'';
patches = [
# Fix click 8.2.x incompatibility
# TypeError: CliRunner.__init__() got an unexpected keyword argument 'mix_stderr'
# https://github.com/omnilib/ufmt/pull/260
(fetchpatch2 {
name = "fix-click-incompatibility.patch";
url = "https://github.com/omnilib/ufmt/pull/260/commits/7980d7cd0a29fbd287e10d939248ef7c9d38a660.patch";
hash = "sha256-97/jQVGCC+PXk8uxyF/M7XlLuVqJ5SgQZd/MXkaiO70=";
})
];
build-system = [ flit-core ];