about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/snowballstemmer/default.nix
blob: 9b7481a62a640582fc2480c2c025bae0fcc9eff2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, buildPythonPackage, PyStemmer, fetchPypi }:

buildPythonPackage rec {
  pname = "snowballstemmer";
  version = "1.2.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "919f26a68b2c17a7634da993d91339e288964f93c274f1343e3bbbe2096e1128";
  };

  # No tests included
  doCheck = false;

  propagatedBuildInputs = [ PyStemmer ];

  meta = with stdenv.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;
  };
}