lbraun pushed a commit to branch wip-python-pep517
in repository guix.
commit a2bd36b65f7ca640aeb245f4d55bb5726bb36073
Author: Lars-Dominik Braun <[email protected]>
AuthorDate: Fri Jan 7 14:31:35 2022 +0100
gnu: python-immutabledict: Add missing build input.
* gnu/packages/python-xyz.scm (python-immutabledict)[native-inputs]:
Add python-poetry-core.
---
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 0eb5fb576f..a7a202218c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10209,7 +10209,7 @@ applications.")
(arguments
`(#:tests? #f)) ; no tests in PyPI release and no setup.py in GitHub
(native-inputs
- (list python-pytest))
+ (list python-pytest python-poetry-core))
(home-page "https://github.com/corenting/immutabledict")
(synopsis "Immutable wrapper around dictionaries")
(description