pythonPackage.word2vec: init at 0.9.1
This commit is contained in:
parent
c3b791f15b
commit
14f3ec5718
@ -27689,6 +27689,30 @@ in modules // {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
word2vec = buildPythonPackage rec {
|
||||||
|
name = "word2vec-${version}";
|
||||||
|
version = "0.9.1";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "mirror://pypi/w/word2vec/${name}.tar.gz";
|
||||||
|
sha256 = "a811e3e98a8e6dfe7bc851ebbbc2d6e5ab5142f2a134dd3c03daac997b546faa";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with self; [ cython numpy ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
cd word2vec/tests;
|
||||||
|
${python.interpreter} test_word2vec.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Tool for computing continuous distributed representations of words";
|
||||||
|
homepage = "https://github.com/danielfrg/word2vec";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ NikolaMandic ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
tvdb_api = buildPythonPackage rec {
|
tvdb_api = buildPythonPackage rec {
|
||||||
name = "tvdb_api-${version}";
|
name = "tvdb_api-${version}";
|
||||||
version = "1.10";
|
version = "1.10";
|
||||||
|
Loading…
Reference in New Issue
Block a user