2020-02-18 19:39:12 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchPypi
|
|
|
|
, buildPythonPackage
|
|
|
|
, cmake
|
|
|
|
, python
|
|
|
|
, zlib
|
|
|
|
, ncurses
|
|
|
|
, pytest
|
|
|
|
, docutils
|
|
|
|
, pygments
|
|
|
|
, numpy
|
|
|
|
, scipy
|
|
|
|
, scikitlearn }:
|
2017-02-15 16:49:49 +00:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "vowpalwabbit";
|
2020-11-14 07:45:33 +00:00
|
|
|
version = "8.9.0";
|
2017-02-15 16:49:49 +00:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi{
|
|
|
|
inherit pname version;
|
2020-11-14 07:45:33 +00:00
|
|
|
sha256 = "37fb7a400f3a7923a04df9921b3eef1bbe96117424ef083dcfed0e4eea77fa08";
|
2017-05-27 10:25:35 +01:00
|
|
|
};
|
2018-09-03 14:47:04 +01:00
|
|
|
|
2020-02-18 19:39:12 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2018-09-03 14:47:04 +01:00
|
|
|
];
|
|
|
|
|
2020-02-18 19:39:12 +00:00
|
|
|
buildInputs = [
|
|
|
|
docutils
|
|
|
|
ncurses
|
|
|
|
pygments
|
|
|
|
python.pkgs.boost
|
|
|
|
zlib.dev
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
numpy
|
|
|
|
scikitlearn
|
|
|
|
scipy
|
|
|
|
];
|
2017-02-15 16:49:49 +00:00
|
|
|
|
2020-02-18 19:39:12 +00:00
|
|
|
# Python build script uses CMake, but we don't want CMake to do the
|
|
|
|
# configuration.
|
|
|
|
dontUseCmakeConfigure = true;
|
2017-02-15 16:49:49 +00:00
|
|
|
|
2018-09-03 20:48:13 +01:00
|
|
|
# Python ctypes.find_library uses DYLD_LIBRARY_PATH.
|
|
|
|
preConfigure = lib.optionalString stdenv.isDarwin ''
|
|
|
|
export DYLD_LIBRARY_PATH="${python.pkgs.boost}/lib"
|
|
|
|
'';
|
|
|
|
|
2017-05-27 10:25:35 +01:00
|
|
|
checkPhase = ''
|
|
|
|
# check-manifest requires a git clone, not a tarball
|
|
|
|
# check-manifest --ignore "Makefile,PACKAGE.rst,*.cc,tox.ini,tests*,examples*,src*"
|
2020-02-18 19:39:12 +00:00
|
|
|
${python.interpreter} setup.py check -ms
|
2017-05-27 10:25:35 +01:00
|
|
|
'';
|
2017-02-15 16:49:49 +00:00
|
|
|
|
2017-05-27 10:25:35 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Vowpal Wabbit is a fast machine learning library for online learning, and this is the python wrapper for the project.";
|
2020-02-18 19:39:12 +00:00
|
|
|
homepage = "https://github.com/JohnLangford/vowpal_wabbit";
|
2017-05-27 10:25:35 +01:00
|
|
|
license = licenses.bsd3;
|
2018-09-04 06:43:53 +01:00
|
|
|
broken = stdenv.isAarch64;
|
2017-05-27 10:25:35 +01:00
|
|
|
maintainers = with maintainers; [ teh ];
|
|
|
|
};
|
2017-02-15 16:49:49 +00:00
|
|
|
}
|