vowpalwabbit: fix build against boost-python.
Patch setup.py to look for libboost_python{Major}{Minor}.
This commit is contained in:
@@ -9,13 +9,20 @@ buildPythonPackage rec {
|
||||
inherit pname version;
|
||||
sha256 = "0b517371fc64f1c728a0af42a31fa93def27306e9b4d25d6e5fd01bcff1b7304";
|
||||
};
|
||||
|
||||
# Should be fixed in next Python release after 8.5.0:
|
||||
# https://github.com/JohnLangford/vowpal_wabbit/pull/1533
|
||||
patches = [
|
||||
./vowpal-wabbit-find-boost.diff
|
||||
];
|
||||
|
||||
# vw tries to write some explicit things to home
|
||||
# python installed: The directory '/homeless-shelter/.cache/pip/http'
|
||||
preInstall = ''
|
||||
export HOME=$PWD
|
||||
'';
|
||||
|
||||
buildInputs = [ boost.dev zlib.dev clang ncurses pytest docutils pygments ];
|
||||
buildInputs = [ python.pkgs.boost zlib.dev clang ncurses pytest docutils pygments ];
|
||||
propagatedBuildInputs = [ numpy scipy scikitlearn ];
|
||||
|
||||
checkPhase = ''
|
||||
|
||||
Reference in New Issue
Block a user