nixpkgs/pkgs/development/python-modules/xgboost/default.nix
Frederik Rietdijk ced21f5e1a pythonPackages: remove name attribute`
The `buildPython*` function computes name from `pname` and `version`.
This change removes `name` attribute from all expressions in
`pkgs/development/python-modules`.

While at it, some other minor changes were made as well, such as
replacing `fetchurl` calls with `fetchPypi`.
2018-06-23 18:14:26 +02:00

33 lines
717 B
Nix

{ stdenv
, buildPythonPackage
, nose
, scipy
, xgboost
}:
buildPythonPackage rec {
pname = "xgboost";
inherit (xgboost) version src meta;
propagatedBuildInputs = [ scipy ];
checkInputs = [ nose ];
postPatch = let
libname = "libxgboost.${stdenv.hostPlatform.extensions.sharedLibrary}";
in ''
cd python-package
sed "s/CURRENT_DIR = os.path.dirname(__file__)/CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))/g" -i setup.py
sed "/^LIB_PATH.*/a LIB_PATH = [os.path.relpath(LIB_PATH[0], CURRENT_DIR)]" -i setup.py
cat <<EOF >xgboost/libpath.py
def find_lib_path():
return ["${xgboost}/lib/${libname}"]
EOF
'';
postInstall = ''
rm -rf $out/xgboost
'';
}