mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
38 lines
673 B
Nix
38 lines
673 B
Nix
{ buildPythonPackage
|
|
, pytest
|
|
, nose
|
|
, scipy
|
|
, scikitlearn
|
|
, stdenv
|
|
, xgboost
|
|
, substituteAll
|
|
, pandas
|
|
, matplotlib
|
|
, graphviz
|
|
, datatable
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "xgboost";
|
|
inherit (xgboost) version src meta;
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./lib-path-for-python.patch;
|
|
libpath = "${xgboost}/lib";
|
|
extention = stdenv.hostPlatform.extensions.sharedLibrary;
|
|
})
|
|
];
|
|
|
|
postPatch = "cd python-package";
|
|
|
|
propagatedBuildInputs = [ scipy ];
|
|
buildInputs = [ xgboost ];
|
|
checkInputs = [ nose pytest scikitlearn pandas matplotlib graphviz datatable ];
|
|
|
|
checkPhase = ''
|
|
ln -sf ../demo .
|
|
nosetests ../tests/python
|
|
'';
|
|
}
|