From 0a98febe6b3ddeffc2e51a89fd2328fc39171794 Mon Sep 17 00:00:00 2001 From: TomaSajt <62384384+TomaSajt@users.noreply.github.com> Date: Thu, 18 Sep 2025 18:23:54 +0200 Subject: [PATCH] python3Packages.scikit-bio: add missing dependency, reenable test --- pkgs/development/python-modules/scikit-bio/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/scikit-bio/default.nix b/pkgs/development/python-modules/scikit-bio/default.nix index 347c9364e41b..ef4e4ed9719b 100644 --- a/pkgs/development/python-modules/scikit-bio/default.nix +++ b/pkgs/development/python-modules/scikit-bio/default.nix @@ -17,6 +17,7 @@ biom-format, statsmodels, patsy, + array-api-compat, python, pytestCheckHook, @@ -51,6 +52,7 @@ buildPythonPackage rec { biom-format statsmodels patsy + array-api-compat ]; nativeCheckInputs = [ pytestCheckHook ]; @@ -58,11 +60,6 @@ buildPythonPackage rec { # only the $out dir contains the built cython extensions, so we run the tests inside there enabledTestPaths = [ "${placeholder "out"}/${python.sitePackages}/skbio" ]; - disabledTestPaths = [ - # don't know why, but this segfaults - "${placeholder "out"}/${python.sitePackages}/skbio/metadata/tests/test_intersection.py" - ]; - pythonImportsCheck = [ "skbio" ]; meta = {