Merge pull request #72840 from jonringer/fix-hdbscan

python3Packages.hdbscan: add missing dependency
This commit is contained in:
Renaud
2019-11-13 00:59:33 +01:00
committed by GitHub
@@ -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";