From d52048e66de5c4726e22eadc9419223f0c050ffa Mon Sep 17 00:00:00 2001 From: qbisi Date: Mon, 28 Jul 2025 16:53:27 +0800 Subject: [PATCH] python312Packages.pymatgen: fix disabledTestPaths fix regression introduced in https://github.com/NixOS/nixpkgs/pull/424782 --- pkgs/development/python-modules/pymatgen/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pymatgen/default.nix b/pkgs/development/python-modules/pymatgen/default.nix index 7199ebbe1862..36e22e559e1a 100644 --- a/pkgs/development/python-modules/pymatgen/default.nix +++ b/pkgs/development/python-modules/pymatgen/default.nix @@ -169,10 +169,11 @@ buildPythonPackage rec { "test_timer" ]; - disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [ + disabledTestPaths = [ # We have not packaged moyopy yet. "tests/analysis/test_prototypes.py::test_get_protostructure_label_from_moyopy" - + ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ # Crash when running the pmg command # Critical error: required built-in appearance SystemAppearance not found "tests/cli/test_pmg_plot.py"