From 8a0836b457de96bfdaeea1cfdbab1da613f5e3fd Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 5 Oct 2025 08:45:09 +0100 Subject: [PATCH] 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: * gnu/packages/python-xyz.scm (python-num2words)[native-inputs]: Remove python-docopt. [propagated-inputs]: Add python-docopt. Change-Id: I53269e2760b216292957d2c418a62c1b12f6b51a --- gnu/packages/python-xyz.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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