summary refs log tree commit diff
path: root/pkgs/development/python-modules/gensim
diff options
context:
space:
mode:
authorJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2017-06-12 10:15:19 +0200
committerJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2017-06-13 09:35:18 +0200
commitcbbdc7d3eb6cd359f94e3d763341c864aeb15b88 (patch)
tree36c77f5935f5b6f70650e17657691ad18300d765 /pkgs/development/python-modules/gensim
parent4b3e5c9beac6c874dce36d6dcd6cc01ae4f127d2 (diff)
downloadnixlib-cbbdc7d3eb6cd359f94e3d763341c864aeb15b88.tar
nixlib-cbbdc7d3eb6cd359f94e3d763341c864aeb15b88.tar.gz
nixlib-cbbdc7d3eb6cd359f94e3d763341c864aeb15b88.tar.bz2
nixlib-cbbdc7d3eb6cd359f94e3d763341c864aeb15b88.tar.lz
nixlib-cbbdc7d3eb6cd359f94e3d763341c864aeb15b88.tar.xz
nixlib-cbbdc7d3eb6cd359f94e3d763341c864aeb15b88.tar.zst
nixlib-cbbdc7d3eb6cd359f94e3d763341c864aeb15b88.zip
pythonPackages.gensim: init at 2.1.0
Diffstat (limited to 'pkgs/development/python-modules/gensim')
-rw-r--r--pkgs/development/python-modules/gensim/default.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/gensim/default.nix b/pkgs/development/python-modules/gensim/default.nix
new file mode 100644
index 000000000000..51794059b8e1
--- /dev/null
+++ b/pkgs/development/python-modules/gensim/default.nix
@@ -0,0 +1,43 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, numpy
+, six
+, scipy
+, smart_open
+, scikitlearn
+, testfixtures
+, unittest2
+}:
+
+buildPythonPackage rec {
+  pname = "gensim";
+  name = "${pname}-${version}";
+  version = "2.1.0";
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1wn7bji9b80wn1yggmh7a0dlwzdjr6cp24x4p33j2rf29lxnm2kc";
+  };
+
+  propagatedBuildInputs = [ smart_open numpy six scipy
+                            # scikitlearn testfixtures unittest2 # for tests
+                          ];
+  doCheck = false;
+
+  # Two tests fail.
+
+  # ERROR: testAddMorphemesToEmbeddings (gensim.test.test_varembed_wrapper.TestVarembed)
+  # ImportError: Could not import morfessor.
+  # This package is not in nix
+
+  # ERROR: testWmdistance (gensim.test.test_fasttext_wrapper.TestFastText)
+  # ImportError: Please install pyemd Python package to compute WMD.
+  # This package is not in nix
+
+  meta = {
+    description = "Topic-modelling library";
+    homepage = "https://radimrehurek.com/gensim/";
+    license = lib.licenses.lgpl21;
+    maintainers = with lib.maintainers; [ jpbernardy ];
+  };
+}