From dacc6c8338c1bd27e2b63c98e6488c2f0ca2ec85 Mon Sep 17 00:00:00 2001
From: Yuugen <84189407+ImYuugen@users.noreply.github.com>
Date: Thu, 17 Oct 2024 19:02:59 +0200
Subject: [PATCH] fix: disable failing tests on nix (#241)

Signed-off-by: Yuugen <yuugenssb@proton.me>
---
 packaging/nix/umu-launcher.nix | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/packaging/nix/umu-launcher.nix b/packaging/nix/umu-launcher.nix
index b95e237c7..74e3298b2 100644
--- a/packaging/nix/umu-launcher.nix
+++ b/packaging/nix/umu-launcher.nix
@@ -10,7 +10,14 @@ python3Packages.buildPythonPackage {
     pkgs.scdoc
     pkgs.git
     pkgs.python3Packages.installer
-    pkgs.hatch
+    (pkgs.hatch.overrideAttrs (prev: {
+      disabledTests = prev.disabledTests ++ [
+        "test_field_readme"
+        "test_field_string"
+        "test_field_complex"
+        "test_plugin_dependencies_unmet"
+      ];
+    }))
     pkgs.python3Packages.build
   ];
   propagatedBuildInputs = [