587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
50 lines
803 B
Nix
50 lines
803 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" ];
|
|
}
|