python3Packages.pynndescent: 0.5.2 -> 0.5.4

This commit is contained in:
Martin Weinelt 2021-08-26 21:32:42 +02:00
parent bc0f51824a
commit 56f0bb1063

View File

@ -1,43 +1,40 @@
{ lib
, buildPythonPackage
, fetchPypi
, nose
, joblib
, llvmlite
, numba
, scikit-learn
, scipy
, numba
, llvmlite
, joblib
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pynndescent";
version = "0.5.2";
version = "0.5.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0w87c2v0li2rdbx6qfc2lb6y6bxpdy3jwfgzfs1kcr4d1chj5zfr";
sha256 = "221124cbad8e3cf3ed421a4089d80ac5a29d3215e76cb49effc1df887533d2a8";
};
propagatedBuildInputs = [
joblib
llvmlite
numba
scikit-learn
scipy
numba
llvmlite
joblib
];
checkInputs = [
nose
pytestCheckHook
];
checkPhase = ''
nosetests
'';
meta = with lib; {
description = "Nearest Neighbor Descent";
homepage = "https://github.com/lmcinnes/pynndescent";
license = licenses.bsd2;
maintainers = [ maintainers.mic92 ];
maintainers = with maintainers; [ mic92 ];
};
}