Merge pull request #251736 from tjni/opentsne

python310Packages.opentsne: add missing build dependencies
This commit is contained in:
OTABI Tomoya
2023-08-27 19:35:39 +09:00
committed by GitHub
@@ -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;