gnu: gajim: Avoid top-level reference to 'python'.

This fixes a circular dependency due to this top-level reference to
'python' as discussed in <https://bugs.gnu.org/38326>.

* gnu/packages/messaging.scm (gajim)[native-search-paths]: Remove
reference to 'python'.  Hard-code the Python version instead.
This commit is contained in:
Ludovic Courtès 2019-12-02 11:14:09 +01:00
parent 66977719a6
commit abad22dd4a
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -643,7 +643,12 @@ (define-public gajim
(variable "PYTHONPATH")
(files (list (string-append
"lib/python"
(version-major+minor (package-version python))
;; FIXME: Cannot use this expression as it would
;; introduce a circular dependency at the top level.
;; (version-major+minor (package-version python))
"3.7"
"/site-packages"))))))
(native-inputs
`(("intltool" ,intltool)