core/pkgs/by-name/py/python/python-modules/snowballstemmer/default.nix

25 lines
632 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ lib, buildPythonPackage, pystemmer, fetchPypi }:
buildPythonPackage rec {
pname = "snowballstemmer";
version = "2.2.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1";
};
# No tests included
doCheck = false;
propagatedBuildInputs = [ pystemmer ];
meta = with lib; {
description = "16 stemmer algorithms (15 + Poerter English stemmer) generated from Snowball algorithms";
homepage = "http://sigal.saimon.org/en/latest/index.html";
license = licenses.bsd3;
platforms = platforms.unix;
};
}