File tree Expand file tree Collapse file tree 1 file changed +6
-12
lines changed
pkgs/development/python-modules/equinox Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change 2222
2323buildPythonPackage rec {
2424 pname = "equinox" ;
25- version = "0.12.1 " ;
25+ version = "0.12.2 " ;
2626 pyproject = true ;
2727
2828 src = fetchFromGitHub {
2929 owner = "patrick-kidger" ;
3030 repo = "equinox" ;
3131 tag = "v${ version } " ;
32- hash = "sha256-mw2fk+527b6Rx6FGe6QJf3ZbxZ3rjYFXKleX2g6AryU =" ;
32+ hash = "sha256-q/5gNXA8TnHwtm+krVBulHH3QMj9E2JVQgXJk6QYjUI =" ;
3333 } ;
3434
3535 # Relax speed constraints on tests that can fail on busy builders
@@ -56,16 +56,10 @@ buildPythonPackage rec {
5656 pytestCheckHook
5757 ] ;
5858
59- disabledTests =
60- [
61- # AssertionError: assert '<function te...n.<locals>.f>' == '<function f>'
62- # https://github.com/patrick-kidger/equinox/issues/1008
63- "test_function"
64- ]
65- ++ lib . optionals stdenv . hostPlatform . isDarwin [
66- # SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated!
67- "test_filter"
68- ] ;
59+ disabledTests = lib . optionals stdenv . hostPlatform . isDarwin [
60+ # SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated!
61+ "test_filter"
62+ ] ;
6963
7064 pythonImportsCheck = [ "equinox" ] ;
7165
You can’t perform that action at this time.
0 commit comments