1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-07 05:30:38 +02:00

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
This commit is contained in:
Sharlatan Hellseher
2025-10-05 08:45:09 +01:00
parent b25112491e
commit 8a0836b457

View File

@@ -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