python3Packages.hdbscan: add missing dependency

wip/yesman
Jonathan Ringer 5 years ago
parent a692029726
commit c2c1227bbb
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
  1. 3
      pkgs/development/python-modules/hdbscan/default.nix

@ -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…
Cancel
Save