diff --git a/guix/ui.scm b/guix/ui.scm
index 1b7d3347579b6fc93254924ec124592104cbe56b..9112d55daf7cf93a41b3aa4deef95270f33dd912 100644
--- a/guix/ui.scm
+++ b/guix/ui.scm
@@ -468,8 +468,8 @@ (define (package<? p1 p2)
   (format port "version: ~a~%" (package-version p))
   (format port "dependencies: ~a~%"
           (match (package-direct-inputs p)
-            (((labels packages . _) ...)
-             (dependencies->recutils packages))))
+            (((labels inputs . _) ...)
+             (dependencies->recutils (filter package? inputs)))))
   (format port "location: ~a~%"
           (or (and=> (package-location p) location->string)
               (_ "unknown")))
diff --git a/tests/guix-package.sh b/tests/guix-package.sh
index 99debb936bb6f18a218a2e484f4401f5f2eba370..e8ff7a88a8fc66ed2cbbda2c7b0e6e86d3229fda 100644
--- a/tests/guix-package.sh
+++ b/tests/guix-package.sh
@@ -179,6 +179,9 @@ guix package -p "$profile" -A 'gui.*e' | grep guile
 # Check whether `--show' returns something sensible.
 guix package --show=guile | grep "^name: guile"
 
+# Check show doesn't fail for packages with non-package inputs.
+guix package --show=texlive
+
 # There's no generation older than 12 months, so the following command should
 # have no effect.
 generation="`readlink_base "$profile"`"