[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: python-nltk: Add missing inputs.
From: |
guix-commits |
Subject: |
02/02: gnu: python-nltk: Add missing inputs. |
Date: |
Mon, 24 May 2021 04:19:11 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 67ac4348d4f4631b65201f66e0ba56f54143ad1b
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon May 24 11:11:34 2021 +0300
gnu: python-nltk: Add missing inputs.
* gnu/packages/python-xyz.scm (python-nltk)[propagated-inputs]: Add
python-click, python-joblib, python-regex, python-tqdm.
---
gnu/packages/python-xyz.scm | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e011d37..954536b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15463,6 +15463,11 @@ extracting firmware images")
'(;; The tests require some extra resources to be downloaded.
;; TODO Try packaging these resources.
#:tests? #f))
+ (propagated-inputs
+ `(("python-click" ,python-click)
+ ("python-joblib" ,python-joblib)
+ ("python-regex" ,python-regex)
+ ("python-tqdm" ,python-tqdm)))
(native-inputs
`(("unzip" ,unzip)))
(home-page "http://nltk.org/")