diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-01-15 00:22:11 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-01-15 16:33:09 -0500 |
commit | 274deb0fa187b5cf0b9d252d7b857bb2797f733d (patch) | |
tree | 22854f599c7309efca373b692feda551670e0d6d /gnu/packages | |
parent | ec1b5f85e7901bd96cc1143dce6fbef970821e17 (diff) | |
download | guix-274deb0fa187b5cf0b9d252d7b857bb2797f733d.tar.gz |
gnu: python-backpack: Fix build.
* gnu/packages/python-xyz.scm (python-backpack)[native-inputs]: Add python-toml.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
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") |