nixpkgs/pkgs/development/python-modules/hdbscan/default.nix
Robert Scott 8008954579 pythonPackages.hdbscan: fix build by removing upstream patch, adding joblib
joblib is for the benefit of py27, whose scikitlearn doesn't include it.
also move cython to nativeBuildInputs
2019-06-22 19:06:52 +01:00

33 lines
747 B
Nix

{ lib
, buildPythonPackage
, cython
, numpy
, nose
, scipy
, scikitlearn
, fetchPypi
, joblib
}:
buildPythonPackage rec {
pname = "hdbscan";
version = "0.8.22";
src = fetchPypi {
inherit pname version;
sha256 = "5cfdc25375123eb9a72363449979141cc928c1953f220f0f81d7baabcaccec2d";
};
checkInputs = [ nose ];
nativeBuildInputs = [ cython ];
propagatedBuildInputs = [ numpy scipy scikitlearn joblib ];
meta = with lib; {
description = "Hierarchical Density-Based Spatial Clustering of Applications with Noise, a clustering algorithm with a scikit-learn compatible API";
homepage = https://github.com/scikit-learn-contrib/hdbscan;
license = licenses.bsd3;
maintainers = with maintainers; [ ixxie ];
};
}