gnu: python-sortedcontainers: Add missing propagated-inputs.

* gnu/packages/python-xyz.scm (python-sortedcontainers):
[propagated-inputs] Add python-appdirs, python-distlib, python-filelock,
python-importlib-metadata and python-six.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
Tanguy Le Carrour 2020-03-21 12:26:21 +01:00 committed by Leo Famulari
parent 6dcbd20afa
commit 01e3044200
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -16748,6 +16748,12 @@ (define-public python-sortedcontainers
(build-system python-build-system)
(native-inputs
`(("python-tox" ,python-tox)))
(propagated-inputs
`(("python-appdirs" ,python-appdirs)
("python-distlib" ,python-distlib)
("python-filelock" ,python-filelock)
("python-importlib-metadata" ,python-importlib-metadata) ;; python < 3.8
("python-six" ,python-six)))
(home-page "http://www.grantjenks.com/docs/sortedcontainers/")
(synopsis "Sorted List, Sorted Dict, Sorted Set")
(description