fix(nix/package): update package and dependencies, temporarily ignore tests

This commit is contained in:
Xarvex
2026-08-28 12:21:44 -05:00
parent f978ae1ea1
commit 55b033eca4
7 changed files with 124 additions and 71 deletions
+4 -3
View File
@@ -1,5 +1,5 @@
# SPDX-FileCopyrightText: (c) TagStudio Contributors
# SPDX-License-Identifier: GPL-3.0-only
# SPDX-License-Identifier: MIT
{
description = "TagStudio";
@@ -49,9 +49,10 @@
inherit pillow-jxl-plugin;
};
openexr = python3Packages.callPackage ./nix/package/openexr.nix { inherit (pkgs) openexr; };
pillow-jxl-plugin = python3Packages.callPackage ./nix/package/pillow-jxl-plugin.nix {
inherit (pkgs) cmake;
inherit pyexiv2;
inherit openexr pyexiv2;
};
pyexiv2 = python3Packages.callPackage ./nix/package/pyexiv2.nix { inherit (pkgs) exiv2; };
in
@@ -59,7 +60,7 @@
inherit tagstudio;
tagstudio-jxl = tagstudio.override { withJXLSupport = true; };
inherit pillow-jxl-plugin pyexiv2;
inherit openexr pillow-jxl-plugin pyexiv2;
}
)
);