mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
Merge branch 'master' into core-updates
This commit is contained in:
commit
593dfdc33b
1 changed files with 9 additions and 1 deletions
|
@ -8382,6 +8382,9 @@ (define-public python-pyquery
|
|||
(base32
|
||||
"0j9fsisip21qv4xljsg5dmni1pgpvwrjyyhhql0glydc4bs5rjgv"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
`(("python-webob" ,python-webob)
|
||||
("python-webtest" ,python-webtest)))
|
||||
(propagated-inputs
|
||||
`(("python-lxml" ,python-lxml)
|
||||
("python-cssselect" ,python-cssselect)))
|
||||
|
@ -8398,7 +8401,8 @@ (define-public python2-pyquery
|
|||
(strip-python2-variant python-pyquery))))
|
||||
(package
|
||||
(inherit pyquery)
|
||||
(native-inputs `(("python2-setuptools" ,python2-setuptools))))))
|
||||
(native-inputs `(("python2-setuptools" ,python2-setuptools)
|
||||
,@(package-native-inputs pyquery))))))
|
||||
|
||||
(define-public python-webtest
|
||||
(package
|
||||
|
@ -10538,6 +10542,10 @@ (define-public python-nltk
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue