mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
60 lines
1.4 KiB
Nix
60 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
cython,
|
|
numpy,
|
|
pytestCheckHook,
|
|
scipy,
|
|
scikit-learn,
|
|
fetchPypi,
|
|
joblib,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hdbscan";
|
|
version = "0.8.38.post1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-X726L/tamai1L6KRVljO1r7Vn00NX0CxxnNkbJKKrAs=";
|
|
};
|
|
|
|
pythonRemoveDeps = [ "cython" ];
|
|
nativeBuildInputs = [
|
|
cython
|
|
];
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
scipy
|
|
scikit-learn
|
|
joblib
|
|
six
|
|
];
|
|
preCheck = ''
|
|
cd hdbscan/tests
|
|
rm __init__.py
|
|
'';
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
disabledTests = [
|
|
# known flaky tests: https://github.com/scikit-learn-contrib/hdbscan/issues/420
|
|
"test_mem_vec_diff_clusters"
|
|
"test_all_points_mem_vec_diff_clusters"
|
|
"test_approx_predict_diff_clusters"
|
|
# another flaky test https://github.com/scikit-learn-contrib/hdbscan/issues/421
|
|
"test_hdbscan_boruvka_balltree_matches"
|
|
# more flaky tests https://github.com/scikit-learn-contrib/hdbscan/issues/570
|
|
"test_hdbscan_boruvka_balltree"
|
|
"test_hdbscan_best_balltree_metric"
|
|
];
|
|
|
|
pythonImportsCheck = [ "hdbscan" ];
|
|
|
|
meta = with lib; {
|
|
description = "Hierarchical Density-Based Spatial Clustering of Applications with Noise, a clustering algorithm with a scikit-learn compatible API";
|
|
homepage = "https://github.com/scikit-learn-contrib/hdbscan";
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|