python310Packages.gensim: 4.3.0 -> 4.3.1

Changelog: https://github.com/RaRe-Technologies/gensim/blob/4.3.1/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2023-05-01 18:44:40 +02:00
parent 8ae7eef571
commit 7ca0c7b4f7

View File

@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "gensim";
version = "4.3.0";
version = "4.3.1";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-ZL1+ximQIVh4gi6LJWnRg1BU9WzfU2AN3+mSfjHztI0=";
hash = "sha256-i18RwOalMICGtI6PaEEiOk+ho31RNoRhK37oVLUzAV8=";
};
nativeBuildInputs = [
@ -54,10 +54,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Topic-modelling library";
homepage = "https://radimrehurek.com/gensim/";
changelog = "https://github.com/RaRe-Technologies/gensim/blob/${version}/CHANGELOG.md";
license = licenses.lgpl21Only;
maintainers = with maintainers; [ jyp ];
# python310 errors as: No matching distribution found for FuzzyTM>=0.4.0
# python311 errors as: longintrepr.h: No such file or directory
broken = true; # At 2023-02-05
};
}