guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit e7d8330d430a72ab0389e59da8322f20d89284bf
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Nov 1 16:56:10 2025 +0100
gnu: python-envs: Propagate python-click.
The new sanity-check found that we forgot to do that.
* gnu/packages/python-xyz.scm (python-envs)[propagated-inputs]: Add
python-click.
Change-Id: I1106a370ca4a15435d2315fcea246b398db666b2
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9c4ed883be..15479aba4b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1065,6 +1065,8 @@ packaging tasks.")
(list #:test-backend #~'unittest))
(native-inputs
(list python-poetry-core))
+ (propagated-inputs
+ (list python-click))
(home-page "https://github.com/capless/envs")
(synopsis "Easy access of environment variables from Python")
(description