summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-05 08:45:09 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-05 08:45:09 +0100
commit8a0836b457de96bfdaeea1cfdbab1da613f5e3fd (patch)
treead96c820d782a9819c8a0f93db9e28433cf99f4a
parentb25112491eba874a739ce2916d563ddb6d1b200c (diff)
gnu: python-num2words: Adjust inputs.
"docopt" is listed in "install_requires" however it's used just in CLI and not in the library, but having it in [inputs] breaks sanity check of dependent package. See: <https://codeberg.org/guix/guix/pulls/3092#issuecomment-7544554> * gnu/packages/python-xyz.scm (python-num2words)[native-inputs]: Remove python-docopt. [propagated-inputs]: Add python-docopt. Change-Id: I53269e2760b216292957d2c418a62c1b12f6b51a
-rw-r--r--gnu/packages/python-xyz.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 888cc52c6d..0c3a2dd376 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1324,8 +1324,8 @@ processes, in parallel, in the console, with an interactive TUI.")
(list
#:test-flags
#~(list "--ignore" "tests/test_cli.py"))) ;Requires delegator.py.
- (inputs (list python-docopt))
(native-inputs (list python-pytest python-setuptools))
+ (propagated-inputs (list python-docopt))
(home-page "https://github.com/savoirfairelinux/num2words")
(synopsis "Convert numbers to words in multiple languages")
(description