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
commit c3af84d50a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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