1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

snowballstemmer: Add derivation

This commit is contained in:
William A. Kennington III 2015-04-22 12:30:18 -07:00
parent d144b28996
commit 6a031c8aa7

View file

@ -10940,6 +10940,24 @@ let
};
};
snowballstemmer = buildPythonPackage rec {
name = "snowballstemmer-1.2.0";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/s/snowballstemmer/${name}.tar.gz";
md5 = "51f2ef829db8129dd0f2354f0b209970";
};
propagatedBuildInputs = with self; [ 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;
};
};
pgpdump = self.buildPythonPackage rec {
name = "pgpdump-1.5";