Merge pull request #43809 from Ma27/fix-python-xgboost

pythonPackages.xgboost: fix build
This commit is contained in:
Frederik Rietdijk
2018-07-21 11:05:44 +02:00
committed by GitHub
3 changed files with 75 additions and 18 deletions

View File

@@ -9,13 +9,13 @@ assert ncclSupport -> cudaSupport;
stdenv.mkDerivation rec {
name = "xgboost-${version}";
version = "0.7";
version = "0.72";
# needs submodules
src = fetchgit {
url = "https://github.com/dmlc/xgboost";
rev = "refs/tags/v${version}";
sha256 = "1wxh020l4q037hc5z7vgxflb70l41a97anl8g6y4wxb74l5zv61l";
sha256 = "1d4kw2jm7d12g8qwi7p9r3429y7sjks9xp9yhvfpx5jh7qakkxj6";
};
enableParallelBuilding = true;