1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00
nixpkgs/pkgs/development/python-modules/catboost/default.nix
2024-05-22 17:32:03 +02:00

57 lines
839 B
Nix

{
lib,
buildPythonPackage,
catboost,
python,
graphviz,
matplotlib,
numpy,
pandas,
plotly,
scipy,
setuptools,
six,
wheel,
}:
buildPythonPackage rec {
inherit (catboost)
pname
version
src
meta
;
format = "pyproject";
sourceRoot = "${src.name}/catboost/python-package";
nativeBuildInputs = [
setuptools
wheel
];
propagatedBuildInputs = [
graphviz
matplotlib
numpy
pandas
plotly
scipy
six
];
buildPhase = ''
runHook preBuild
# these arguments must set after bdist_wheel
${python.pythonOnBuildForHost.interpreter} setup.py bdist_wheel --no-widget --prebuilt-extensions-build-root-dir=${lib.getDev catboost}
runHook postBuild
'';
# setup a test is difficult
doCheck = false;
pythonImportsCheck = [ "catboost" ];
}