gnu: guix-jupyter: Avoid 'specification->package'.

* gnu/packages/package-management.scm (guix-jupyter)[native-inputs]:
Avoid 'specification->package'.
This commit is contained in:
Ludovic Courtès 2019-10-10 17:24:21 +02:00
parent 8f02e5ac81
commit d3650775e0
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -835,9 +835,9 @@ (define-public guix-jupyter
("pkg-config" ,pkg-config)
;; For testing.
("jupyter" ,(specification->package "jupyter"))
("python-ipython" ,(specification->package "python-ipython"))
("python-ipykernel" ,(specification->package "python-ipykernel"))))
("jupyter" ,jupyter)
("python-ipython" ,python-ipython)
("python-ipykernel" ,python-ipykernel)))
(inputs
`(("guix" ,guix)
("guile" ,guile-2.2)))