From 6a031c8aa7e31ff0fc66498b7385882fc953e8e6 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Wed, 22 Apr 2015 12:30:18 -0700 Subject: [PATCH] snowballstemmer: Add derivation --- pkgs/top-level/python-packages.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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";