From 8252fe375a89ae9e9437b9d4599c092fb149c8e1 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 17 May 2025 23:58:33 +0200 Subject: [PATCH] python312Packages.equinox: 0.12.1 -> 0.12.2 Diff: https://github.com/patrick-kidger/equinox/compare/refs/tags/v0.12.1...refs/tags/v0.12.2 Changelog: https://github.com/patrick-kidger/equinox/releases/tag/v0.12.2 --- .../python-modules/equinox/default.nix | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/equinox/default.nix b/pkgs/development/python-modules/equinox/default.nix index e6b3f9f6f108..36e60ec88570 100644 --- a/pkgs/development/python-modules/equinox/default.nix +++ b/pkgs/development/python-modules/equinox/default.nix @@ -22,14 +22,14 @@ buildPythonPackage rec { pname = "equinox"; - version = "0.12.1"; + version = "0.12.2"; pyproject = true; src = fetchFromGitHub { owner = "patrick-kidger"; repo = "equinox"; tag = "v${version}"; - hash = "sha256-mw2fk+527b6Rx6FGe6QJf3ZbxZ3rjYFXKleX2g6AryU="; + hash = "sha256-q/5gNXA8TnHwtm+krVBulHH3QMj9E2JVQgXJk6QYjUI="; }; # Relax speed constraints on tests that can fail on busy builders @@ -56,16 +56,10 @@ buildPythonPackage rec { pytestCheckHook ]; - disabledTests = - [ - # AssertionError: assert '.f>' == '' - # https://github.com/patrick-kidger/equinox/issues/1008 - "test_function" - ] - ++ lib.optionals stdenv.hostPlatform.isDarwin [ - # SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated! - "test_filter" - ]; + disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ + # SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated! + "test_filter" + ]; pythonImportsCheck = [ "equinox" ];