python3.pkgs.umap-learn: 0.4.5 -> 0.5.0

This commit is contained in:
Jörg Thalheim 2021-01-24 05:14:28 +01:00
parent 1924bb8b14
commit a1e458ccdb
No known key found for this signature in database
GPG key ID: B3F5D81B0C6967C4

View file

@ -6,22 +6,25 @@
, scikitlearn
, scipy
, numba
, pynndescent
, tensorflow
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "umap-learn";
version = "0.4.5";
version = "0.5.0";
src = fetchFromGitHub {
owner = "lmcinnes";
repo = "umap";
rev = version;
sha256 = "080by8h4rxr5ijx8vp8kn952chiqz029j26c04k4js4g9s7201bq";
sha256 = "sha256-2Z5RDi4bz8hh8zMwkcCQY9NrGaVd1DJEBOmrCl2oSvM=";
};
checkInputs = [
nose
tensorflow
pytestCheckHook
];
@ -30,8 +33,13 @@ buildPythonPackage rec {
scikitlearn
scipy
numba
pynndescent
];
preCheck = ''
export HOME=$TMPDIR
'';
disabledTests = [
# Plot functionality requires additional packages.
# These test also fail with 'RuntimeError: cannot cache function' error.