diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bf058c202b9..e500ccac4ee 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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";