summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-01-15 00:22:11 -0500
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-01-15 16:33:09 -0500
commit274deb0fa187b5cf0b9d252d7b857bb2797f733d (patch)
tree22854f599c7309efca373b692feda551670e0d6d
parentec1b5f85e7901bd96cc1143dce6fbef970821e17 (diff)
downloadguix-patches-274deb0fa187b5cf0b9d252d7b857bb2797f733d.tar
guix-patches-274deb0fa187b5cf0b9d252d7b857bb2797f733d.tar.gz
gnu: python-backpack: Fix build.
* gnu/packages/python-xyz.scm (python-backpack)[native-inputs]: Add python-toml.
-rw-r--r--gnu/packages/python-xyz.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ac0ddb82a4..780784b7b7 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")