gnu: authenticator: Remove input labels.
* gnu/packages/gnome.scm (authenticator)[native-inputs]: Remove labels. [arguments]: While at it, remove top-level Python reference in favor of THIS-PACKAGE-INPUT. [inputs]: Add PYTHON.
This commit is contained in:
parent
81cbf8854a
commit
d695a63ec9
1 changed files with 10 additions and 9 deletions
|
@ -9607,24 +9607,25 @@ (define-public authenticator
|
|||
(pylib (string-append (assoc-ref outputs "out")
|
||||
"/lib/python"
|
||||
,(version-major+minor
|
||||
(package-version python))
|
||||
(package-version
|
||||
(this-package-input "python")))
|
||||
"/site-packages")))
|
||||
(wrap-program prog
|
||||
`("GUIX_PYTHONPATH" = (,(getenv "GUIX_PYTHONPATH") ,pylib))
|
||||
`("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH"))))
|
||||
#t))))))
|
||||
`("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH"))))))))))
|
||||
(native-inputs
|
||||
`(("desktop-file-utils" ,desktop-file-utils)
|
||||
("gettext" ,gettext-minimal)
|
||||
("glib:bin" ,glib "bin")
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("gtk+:bin" ,gtk+ "bin")
|
||||
("pkg-config" ,pkg-config)))
|
||||
(list desktop-file-utils
|
||||
gettext-minimal
|
||||
`(,glib "bin")
|
||||
gobject-introspection
|
||||
`(,gtk+ "bin")
|
||||
pkg-config))
|
||||
(inputs
|
||||
(list gsettings-desktop-schemas
|
||||
gtk+
|
||||
libhandy-0.0
|
||||
libsecret
|
||||
python
|
||||
python-beautifulsoup4
|
||||
python-pillow
|
||||
python-pyfavicon
|
||||
|
|
Loading…
Reference in a new issue