1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00
nixpkgs/pkgs/development/python-modules/vowpalwabbit/default.nix

41 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, python, boost, zlib, clang, ncurses
, pytest, docutils, pygments, numpy, scipy, scikitlearn }:
2017-02-15 16:49:49 +00:00
buildPythonPackage rec {
pname = "vowpalwabbit";
2018-04-04 19:18:43 +01:00
version = "8.5.0";
2017-02-15 16:49:49 +00:00
src = fetchPypi{
inherit pname version;
2018-04-04 19:18:43 +01:00
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
'';
2017-02-15 16:49:49 +00:00
buildInputs = [ python.pkgs.boost zlib.dev clang ncurses pytest docutils pygments ];
propagatedBuildInputs = [ numpy scipy scikitlearn ];
2017-02-15 16:49:49 +00:00
checkPhase = ''
# check-manifest requires a git clone, not a tarball
# check-manifest --ignore "Makefile,PACKAGE.rst,*.cc,tox.ini,tests*,examples*,src*"
${python.interpreter} setup.py check -mrs
'';
2017-02-15 16:49:49 +00: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.";
homepage = https://github.com/JohnLangford/vowpal_wabbit;
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
2017-02-15 16:49:49 +00:00
}