python3Packages.hdbscan: add missing dependency

This commit is contained in:
Jonathan Ringer
2019-11-05 08:46:38 -08:00
parent a692029726
commit c2c1227bbb

View File

@@ -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";