diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-04-20 00:58:18 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-12 12:46:05 -0400 |
commit | 9ca7d9f82d49f7e09d5a2d2b786960c2a747c807 (patch) | |
tree | 78922bf229499c6a3b09797a696becc173354556 | |
parent | 1dc1da973cc32f59c5d6beb5048e4523f70b70ef (diff) | |
download | guix-9ca7d9f82d49f7e09d5a2d2b786960c2a747c807.tar guix-9ca7d9f82d49f7e09d5a2d2b786960c2a747c807.tar.gz |
gnu: markets: Add python-wrapper to fix build.
* gnu/packages/gnome-xyz.scm (markets)[native-inputs]: Add python-wrapper.
-rw-r--r-- | gnu/packages/gnome-xyz.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index e193c5b962..daec119012 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -57,6 +57,7 @@ #:use-module (gnu packages inkscape) #:use-module (gnu packages image) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages python) #:use-module (gnu packages python-xyz) #:use-module (gnu packages ssh) #:use-module (gnu packages tls) @@ -1207,6 +1208,7 @@ extended file attributes. It also functions as a standalone command.") vala)) (native-inputs (list pkg-config + python-wrapper `(,glib "bin"))) ; for 'glib-compile-resources' (home-page "https://github.com/bitstower/markets") (synopsis "Stock, currency and cryptocurrency tracker") |