diff options
author | Leo Famulari <leo@famulari.name> | 2016-10-29 22:09:39 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-10-29 22:16:19 -0400 |
commit | 59f129855888b18bd0ff39d2427841d9c6714b57 (patch) | |
tree | f53ea88e8f501a7a161a86cf373232913e5b5844 /gnu | |
parent | 2ddbfa8c06fb3fdd1c4367d735c12ec1efd81fd2 (diff) | |
download | gnu-guix-59f129855888b18bd0ff39d2427841d9c6714b57.tar gnu-guix-59f129855888b18bd0ff39d2427841d9c6714b57.tar.gz |
gnu: python-nltk: Disable the test suite.
The tests were silently skipped with Python 3.4. With Python 3.5, this caused
the build of python-nltk to fail.
* gnu/packages/python.scm (python-nltk, python2-nltk)[arguments]:
Disable the tests.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 1247e5ef70..4e0292e1a7 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -10456,6 +10456,10 @@ binary or text.") (base32 "0skxbhnymwlspjkzga0f7x1hg3y50fwpfghs8g8k7fh6f4nknlym")))) (build-system python-build-system) + (arguments + '(;; The tests require some extra resources to be downloaded. + ;; TODO Try packaging these resources. + #:tests? #f)) (home-page "http://nltk.org/") (synopsis "Natural Language Toolkit") (description "It provides interfaces to over 50 corpora and lexical |