Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 23 lines 615 B view raw
1{ stdenv, buildPythonPackage, PyStemmer, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "snowballstemmer"; 5 version = "2.0.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "df3bac3df4c2c01363f3dd2cfa78cce2840a79b9f1c2d2de9ce8d31683992f52"; 10 }; 11 12 # No tests included 13 doCheck = false; 14 15 propagatedBuildInputs = [ PyStemmer ]; 16 17 meta = with stdenv.lib; { 18 description = "16 stemmer algorithms (15 + Poerter English stemmer) generated from Snowball algorithms"; 19 homepage = http://sigal.saimon.org/en/latest/index.html; 20 license = licenses.bsd3; 21 platforms = platforms.unix; 22 }; 23}