Skip to content

Commit ba7b43e

Browse files
authored
python312Packages.scikit-bio: add missing deps (#354208)
2 parents 20b4d00 + d72427d commit ba7b43e

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

pkgs/development/python-modules/scikit-bio/default.nix

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,22 @@
22
lib,
33
buildPythonPackage,
44
fetchFromGitHub,
5+
56
setuptools,
67
cython,
78
oldest-supported-numpy,
9+
810
requests,
911
decorator,
1012
natsort,
1113
numpy,
1214
pandas,
1315
scipy,
1416
h5py,
15-
hdmedians,
1617
biom-format,
18+
statsmodels,
19+
patsy,
20+
1721
python,
1822
pytestCheckHook,
1923
}:
@@ -44,15 +48,21 @@ buildPythonPackage rec {
4448
pandas
4549
scipy
4650
h5py
47-
hdmedians
4851
biom-format
52+
statsmodels
53+
patsy
4954
];
5055

5156
nativeCheckInputs = [ pytestCheckHook ];
5257

5358
# only the $out dir contains the built cython extensions, so we run the tests inside there
5459
pytestFlagsArray = [ "${placeholder "out"}/${python.sitePackages}/skbio" ];
5560

61+
disabledTestPaths = [
62+
# don't know why, but this segfaults
63+
"${placeholder "out"}/${python.sitePackages}/skbio/metadata/tests/test_intersection.py"
64+
];
65+
5666
pythonImportsCheck = [ "skbio" ];
5767

5868
meta = {

0 commit comments

Comments
 (0)