python3Packages.hdbscan: add missing dependency

This commit is contained in:
Jonathan Ringer
2019-11-05 08:46:38 -08:00
parent a692029726
commit c2c1227bbb
@@ -7,6 +7,7 @@
, scikitlearn , scikitlearn
, fetchPypi , fetchPypi
, joblib , joblib
, six
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@@ -21,7 +22,7 @@ buildPythonPackage rec {
checkInputs = [ nose ]; checkInputs = [ nose ];
nativeBuildInputs = [ cython ]; nativeBuildInputs = [ cython ];
propagatedBuildInputs = [ numpy scipy scikitlearn joblib ]; propagatedBuildInputs = [ numpy scipy scikitlearn joblib six ];
meta = with lib; { meta = with lib; {
description = "Hierarchical Density-Based Spatial Clustering of Applications with Noise, a clustering algorithm with a scikit-learn compatible API"; description = "Hierarchical Density-Based Spatial Clustering of Applications with Noise, a clustering algorithm with a scikit-learn compatible API";