apteryx pushed a commit to branch core-updates
in repository guix.
commit 274deb0fa187b5cf0b9d252d7b857bb2797f733d
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Fri Jan 15 00:22:11 2021 -0500
gnu: python-backpack: Fix build.
* gnu/packages/python-xyz.scm (python-backpack)[native-inputs]: Add
python-toml.
---
gnu/packages/python-xyz.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ac0ddb8..780784b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -13484,7 +13484,8 @@ YAML-serialized data.")
(build-system python-build-system)
(native-inputs
`(("python-pytest" ,python-pytest)
- ("python-nose" ,python-nose)))
+ ("python-nose" ,python-nose)
+ ("python-toml" ,python-toml)))
(propagated-inputs
`(("python-simplejson" ,python-simplejson)))
(home-page "https://github.com/sdispater/backpack")