My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/snowballstemmer/default.nix

23 lines
607 B

{ lib, buildPythonPackage, PyStemmer, fetchPypi }:
buildPythonPackage rec {
pname = "snowballstemmer";
version = "2.2.0";
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;
};
}