From 6052b3ba6d4f14b0a9c459c7186871ea9c369ffb Mon Sep 17 00:00:00 2001 From: Luna Nova Date: Sun, 24 Aug 2025 21:55:35 -0700 Subject: [PATCH] python3Packages.albucore: set skipBulkUpdate so albumentations doesn't break --- pkgs/development/python-modules/albucore/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/albucore/default.nix b/pkgs/development/python-modules/albucore/default.nix index 4ca66b260401..d7a20c46fb34 100644 --- a/pkgs/development/python-modules/albucore/default.nix +++ b/pkgs/development/python-modules/albucore/default.nix @@ -40,6 +40,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; + # albumentations doesn't support newer versions of albucore + # and has been archived upstream in favor of relicensed `albumentationsx` + passthru.skipBulkUpdate = true; + meta = { description = "High-performance image processing library to optimize and extend Albumentations with specialized functions for image transformations"; homepage = "https://github.com/albumentations-team/albucore";