gnu: python-sortedcontainers: Add missing propagated-inputs.
authorTanguy Le Carrour <tanguy@bioneland.org>
Sat, 21 Mar 2020 11:26:21 +0000 (12:26 +0100)
committerLeo Famulari <leo@famulari.name>
Tue, 24 Mar 2020 21:10:20 +0000 (17:10 -0400)
* 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>
gnu/packages/python-xyz.scm

index 44a893a..ea2b14a 100644 (file)
@@ -16748,6 +16748,12 @@ that is accessible to other projects developed in Cython.")
     (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