mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 03:03:37 +00:00
python3Packages.pynndescent: 0.5.2 -> 0.5.4
This commit is contained in:
parent
d2788bc2aa
commit
959ca1fd4b
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user