python3Packages.umap-learn: 0.5.0 -> 0.5.1

This commit is contained in:
Martin Weinelt 2021-04-27 04:29:42 +02:00
parent 5c5f728b04
commit 8ee6a9bfc1
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -13,21 +13,15 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "umap-learn"; pname = "umap-learn";
version = "0.5.0"; version = "0.5.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lmcinnes"; owner = "lmcinnes";
repo = "umap"; repo = "umap";
rev = version; rev = version;
sha256 = "sha256-2Z5RDi4bz8hh8zMwkcCQY9NrGaVd1DJEBOmrCl2oSvM="; sha256 = "0favphngcz5jvyqs06x07hk552lvl9qx3vka8r4x0xmv88gsg349";
}; };
checkInputs = [
nose
tensorflow
pytestCheckHook
];
propagatedBuildInputs = [ propagatedBuildInputs = [
numpy numpy
scikitlearn scikitlearn
@ -36,6 +30,12 @@ buildPythonPackage rec {
pynndescent pynndescent
]; ];
checkInputs = [
nose
tensorflow
pytestCheckHook
];
preCheck = '' preCheck = ''
export HOME=$TMPDIR export HOME=$TMPDIR
''; '';