3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #214753 from superherointj/broken-python310Packages.gensim

python310Packages.gensim: mark broken
This commit is contained in:
Nick Cao 2023-02-06 06:57:41 +08:00 committed by GitHub
commit ad86ddbfef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -56,5 +56,8 @@ buildPythonPackage rec {
homepage = "https://radimrehurek.com/gensim/";
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
};
}