summary refs log tree commit diff
path: root/pkgs/development/python-modules/nltk.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-05-27 14:24:47 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-05-27 14:25:08 +0200
commit6b999f3c42607342231b6fe119fcf0f934f40fd8 (patch)
treeaff659b5d13c322236b7b46154450864f5061520 /pkgs/development/python-modules/nltk.nix
parent4cbd5e4141422b835a86bb1b5e2d004a3c9a3a3e (diff)
downloadnixlib-6b999f3c42607342231b6fe119fcf0f934f40fd8.tar
nixlib-6b999f3c42607342231b6fe119fcf0f934f40fd8.tar.gz
nixlib-6b999f3c42607342231b6fe119fcf0f934f40fd8.tar.bz2
nixlib-6b999f3c42607342231b6fe119fcf0f934f40fd8.tar.lz
nixlib-6b999f3c42607342231b6fe119fcf0f934f40fd8.tar.xz
nixlib-6b999f3c42607342231b6fe119fcf0f934f40fd8.tar.zst
nixlib-6b999f3c42607342231b6fe119fcf0f934f40fd8.zip
Python: many package updates
Did not test all packages. Likely we'll have some breakage.
Diffstat (limited to 'pkgs/development/python-modules/nltk.nix')
-rw-r--r--pkgs/development/python-modules/nltk.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/nltk.nix b/pkgs/development/python-modules/nltk.nix
index 92e2f0fc0ca3..302bd89be02c 100644
--- a/pkgs/development/python-modules/nltk.nix
+++ b/pkgs/development/python-modules/nltk.nix
@@ -1,13 +1,13 @@
 { fetchurl, buildPythonPackage, isPy33, lib, six, pythonAtLeast, pythonOlder }:
 
 buildPythonPackage rec {
-  version = "3.2.2";
+  version = "3.2.4";
   pname = "nltk";
   name = "${pname}-${version}";
 
   src = fetchurl {
     url = "mirror://pypi/n/nltk/nltk-${version}.tar.gz";
-    sha256 = "13m8i393h5mhpyvh5rghxxpax3bscv8li3ynwfdiq0kh8wsdndqv";
+    sha256 = "8682ae52f5de4f2ba7b77bd78222a38575ad01ef29946214b254dfdf93a3a0eb";
   };
 
   propagatedBuildInputs = [ six ];