python310Packages.opentsne: add missing build dependencies

This commit is contained in:
Theodore Ni 2023-08-27 01:40:08 -07:00
parent d78f502c6b
commit 3e33d22274
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474

View file

@ -3,11 +3,13 @@
, fetchFromGitHub
, cython
, numpy
, oldest-supported-numpy
, scipy
, scikit-learn
, pytestCheckHook
, nix-update-script
, setuptools
, wheel
}:
let
@ -23,8 +25,14 @@ let
hash = "sha256-L5Qx6dMJlXF3EaWwlFTQ3dkhGXc5PvQBXYJo+QO+Hxc=";
};
nativeBuildInputs = [
cython
oldest-supported-numpy
setuptools
wheel
];
propagatedBuildInputs = [ numpy scipy scikit-learn ];
nativeBuildInputs = [ cython setuptools ];
pythonImportsCheck = [ "openTSNE" ];
doCheck = false;