Merge pull request #72840 from jonringer/fix-hdbscan
python3Packages.hdbscan: add missing dependency
This commit is contained in:
commit
c3af84d50a
@ -7,6 +7,7 @@
|
||||
, scikitlearn
|
||||
, fetchPypi
|
||||
, joblib
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -21,7 +22,7 @@ buildPythonPackage rec {
|
||||
checkInputs = [ nose ];
|
||||
|
||||
nativeBuildInputs = [ cython ];
|
||||
propagatedBuildInputs = [ numpy scipy scikitlearn joblib ];
|
||||
propagatedBuildInputs = [ numpy scipy scikitlearn joblib six ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Hierarchical Density-Based Spatial Clustering of Applications with Noise, a clustering algorithm with a scikit-learn compatible API";
|
||||
|
Loading…
Reference in New Issue
Block a user