From cc3de0d5a8901e0cefcfd5563e3053f9b426926d Mon Sep 17 00:00:00 2001 From: Tyson Whitehead Date: Thu, 18 Jan 2018 00:31:06 -0500 Subject: [PATCH] nltk: Now in upstream --- nltk.nix | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 nltk.nix diff --git a/nltk.nix b/nltk.nix deleted file mode 100644 index 5ab917f..0000000 --- a/nltk.nix +++ /dev/null @@ -1,20 +0,0 @@ -with import {}; - -buildPythonPackage rec { - name = "nltk-${version}"; - version = "3.2.1"; - - src = fetchurl { - url = "mirror://pypi/n/nltk/${name}.tar.gz"; - sha256 = "0skxbhnymwlspjkzga0f7x1hg3y50fwpfghs8g8k7fh6f4nknlym"; - }; - - propagatedBuildInputs = [ pythonPackages.sqlite3 ]; - - meta = with stdenv.lib; { - homepage = http://www.nltk.org/; - description = "Natural Language Toolkit is a platform for building Python programs to work with human language data"; - platforms = platforms.all; - license = licenses.asl20; - }; -}