guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit acdba551cf17d4bf7e9b087944051d2b6e121562
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Jan 18 23:45:01 2026 +0100
gnu: python-envs: Propagate necessary packages.
* gnu/packages/python-xyz.scm (python-envs)
[native-inputs]: Add python-packaging.
[propagated-inputs]: Add python-jinja2, python-terminaltables.
Change-Id: I5a66592a0af7f3567d0313bdc9c3752267033079
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9a391c9fb0..612c15a846 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1042,9 +1042,9 @@ packaging tasks.")
(arguments
(list #:test-backend #~'unittest))
(native-inputs
- (list python-poetry-core))
+ (list python-packaging python-poetry-core))
(propagated-inputs
- (list python-click))
+ (list python-click python-jinja2 python-terminaltables))
(home-page "https://github.com/capless/envs")
(synopsis "Easy access of environment variables from Python")
(description