Skip to content

Commit

Permalink
vowpalwabbit: init at 8.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
teh authored and fpletz committed Feb 22, 2017
1 parent 6320070 commit bae3d0e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pkgs/development/python-modules/vowpalwabbit/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{ fetchurl, boost, zlib, clang, ncurses, pythonPackages, lib }:
pythonPackages.buildPythonPackage rec {
name = "vowpalwabbit-${version}";
version = "8.3.2";

src = fetchurl{
url = "mirror://pypi/v/vowpalwabbit/${name}.tar.gz";
sha256 = "0qm8rlrs2gfgamqnpx4lapxakpzgh0yh3kp1lbd7lhb0r748m3k7";
};
# vw tries to write some explicit things to home
# python installed: The directory '/homeless-shelter/.cache/pip/http'
preInstall = ''
export HOME=$PWD
'';

buildInputs = with pythonPackages; [ boost.dev zlib.dev clang ncurses pytest docutils pygments ];
propagatedBuildInputs = with pythonPackages; [ numpy scipy scikitlearn ];

checkPhase = ''
# check-manifest requires a git clone, not a tarball
# check-manifest --ignore "Makefile,PACKAGE.rst,*.cc,tox.ini,tests*,examples*,src*"
python setup.py check -mrs
'';

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 ];
};

}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ in {

setuptools = callPackage ../development/python-modules/setuptools { };

vowpalwabbit = callPackage ../development/python-modules/vowpalwabbit { pythonPackages = self; };

acoustics = buildPythonPackage rec {
pname = "acoustics";
version = "0.1.2";
Expand Down

0 comments on commit bae3d0e

Please sign in to comment.