From c8ffeac99a94a134825dbfa9e8bdc24545b00296 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Sat, 14 Dec 2024 22:37:37 +0000 Subject: [PATCH] tests/plugins/jupytext: disable on aarch64-darwin --- tests/test-sources/plugins/languages/python/jupytext.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test-sources/plugins/languages/python/jupytext.nix b/tests/test-sources/plugins/languages/python/jupytext.nix index 697236f5..971837ee 100644 --- a/tests/test-sources/plugins/languages/python/jupytext.nix +++ b/tests/test-sources/plugins/languages/python/jupytext.nix @@ -1,4 +1,5 @@ -{ +{ pkgs, ... }: +pkgs.lib.optionalAttrs (pkgs.stdenv.hostPlatform.system != "aarch64-darwin") { empty = { plugins.jupytext.enable = true; };