about summary refs log tree commit diff
path: root/pkgs/development/python-modules/nltk
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-06-06 19:35:31 -0500
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-06-10 13:15:18 +0200
commitda8d885ea817427949f4de99f1a8002f6e103c65 (patch)
tree641313a6c10cfcc2ea2aab7e056dab73b9daf3fd /pkgs/development/python-modules/nltk
parent80971ab7923d9d46442a41ee46c95ff418c18153 (diff)
python3Packages.nltk: 3.4 -> 3.4.3
Diffstat (limited to 'pkgs/development/python-modules/nltk')
-rw-r--r--pkgs/development/python-modules/nltk/default.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/nltk/default.nix b/pkgs/development/python-modules/nltk/default.nix
index 9ae4f00b495bb..2c6858915ce95 100644
--- a/pkgs/development/python-modules/nltk/default.nix
+++ b/pkgs/development/python-modules/nltk/default.nix
@@ -1,26 +1,17 @@
 { fetchPypi, buildPythonPackage, lib, six, singledispatch, isPy3k, fetchpatch }:
 
 buildPythonPackage rec {
-  version = "3.4";
+  version = "3.4.3";
   pname = "nltk";
 
   src = fetchPypi {
     inherit pname version;
     extension = "zip";
-    sha256 = "286f6797204ffdb52525a1d21ec0a221ec68b8e3fa4f2d25f412ac8e63c70e8d";
+    sha256 = "1cjkv4jmmlr0w4qi399ncgb6lp41mb9i352934288wh9xad15mqj";
   };
 
   propagatedBuildInputs = [ six ] ++ lib.optional (!isPy3k) singledispatch;
 
-  # TODO: remove patch during update to new version
-  patches = [
-    (fetchpatch {
-      url = https://github.com/nltk/nltk/commit/3966111cbf2f35fb86082b2f12acd90d75e9b8bb.patch;
-      includes = [ "setup.py" ];
-      sha256 = "1sxafnvf6nzv6d996xc1rys06x62s36swgpfqhsyh6l1lj7y38jw";
-    })
-  ];
-
   # Tests require some data, the downloading of which is impure. It would
   # probably make sense to make the data another derivation, but then feeding
   # that into the tests (given that we need nltk itself to download the data,