From 66e34083af508a84ad33f71c88491c70aee4f8f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 12 Jul 2026 11:50:54 -0700 Subject: [PATCH] python313Packages.fs: mark broken It doesn't suffice to use setuptools_80 in `build-system` because fs imports pkg_resources. --- pkgs/development/python-modules/fs/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/fs/default.nix b/pkgs/development/python-modules/fs/default.nix index 44715f97f82d..d0dd7d12ff6a 100644 --- a/pkgs/development/python-modules/fs/default.nix +++ b/pkgs/development/python-modules/fs/default.nix @@ -88,6 +88,8 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; meta = { + # https://github.com/PyFilesystem/pyfilesystem2/issues/577 + broken = lib.versionAtLeast setuptools.version "82"; description = "Filesystem abstraction"; homepage = "https://github.com/PyFilesystem/pyfilesystem2"; changelog = "https://github.com/PyFilesystem/pyfilesystem2/blob/v${version}/CHANGELOG.md";