1{ 2 lib, 3 buildPythonPackage, 4 pystemmer, 5 fetchPypi, 6}: 7 8buildPythonPackage rec { 9 pname = "snowballstemmer"; 10 version = "2.2.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1"; 16 }; 17 18 # No tests included 19 doCheck = false; 20 21 propagatedBuildInputs = [ pystemmer ]; 22 23 meta = with lib; { 24 description = "16 stemmer algorithms (15 + Poerter English stemmer) generated from Snowball algorithms"; 25 homepage = "http://sigal.saimon.org/en/latest/index.html"; 26 license = licenses.bsd3; 27 platforms = platforms.unix; 28 }; 29}