Loading pkgs/development/python-modules/deepdiff/default.nix +14 −9 Original line number Diff line number Diff line Loading @@ -2,6 +2,7 @@ lib, buildPythonPackage, fetchFromGitHub, stdenv, # build-system setuptools, Loading @@ -19,7 +20,6 @@ numpy, pytestCheckHook, python-dateutil, toml, tomli-w, polars, pandas, Loading Loading @@ -65,13 +65,18 @@ buildPythonPackage rec { pandas ] ++ lib.flatten (lib.attrValues optional-dependencies); disabledTests = [ disabledTests = [ # not compatible with pydantic 2.x "test_pydantic1" "test_pydantic2" # Require pytest-benchmark "test_cache_deeply_nested_a1" "test_lfu" ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ # Times out on darwin in Hydra "test_repeated_timer" ]; pythonImportsCheck = [ "deepdiff" ]; Loading Loading
pkgs/development/python-modules/deepdiff/default.nix +14 −9 Original line number Diff line number Diff line Loading @@ -2,6 +2,7 @@ lib, buildPythonPackage, fetchFromGitHub, stdenv, # build-system setuptools, Loading @@ -19,7 +20,6 @@ numpy, pytestCheckHook, python-dateutil, toml, tomli-w, polars, pandas, Loading Loading @@ -65,13 +65,18 @@ buildPythonPackage rec { pandas ] ++ lib.flatten (lib.attrValues optional-dependencies); disabledTests = [ disabledTests = [ # not compatible with pydantic 2.x "test_pydantic1" "test_pydantic2" # Require pytest-benchmark "test_cache_deeply_nested_a1" "test_lfu" ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ # Times out on darwin in Hydra "test_repeated_timer" ]; pythonImportsCheck = [ "deepdiff" ]; Loading