mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, nose
|
|
, numpy
|
|
, scikitlearn
|
|
, scipy
|
|
, numba
|
|
, pynndescent
|
|
, tensorflow
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "umap-learn";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lmcinnes";
|
|
repo = "umap";
|
|
rev = version;
|
|
sha256 = "sha256-2Z5RDi4bz8hh8zMwkcCQY9NrGaVd1DJEBOmrCl2oSvM=";
|
|
};
|
|
|
|
checkInputs = [
|
|
nose
|
|
tensorflow
|
|
pytestCheckHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
scikitlearn
|
|
scipy
|
|
numba
|
|
pynndescent
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
disabledTests = [
|
|
# Plot functionality requires additional packages.
|
|
# These test also fail with 'RuntimeError: cannot cache function' error.
|
|
"test_umap_plot_testability"
|
|
"test_plot_runs_at_all"
|
|
|
|
# Flaky test. Fails with AssertionError sometimes.
|
|
"test_sparse_hellinger"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Uniform Manifold Approximation and Projection";
|
|
homepage = "https://github.com/lmcinnes/umap";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.costrouc ];
|
|
};
|
|
}
|