[PATCH] gnu: libfprint: Fix build, add python dependency for the tests.

  • Done
  • quality assurance status badge
Details
2 participants
  • Attila Lendvai
  • Ricardo Wurmus
Owner
unassigned
Submitted by
Attila Lendvai
Severity
normal
A
A
Attila Lendvai wrote on 14 Apr 2022 10:14
(address . guix-patches@gnu.org)(name . Attila Lendvai)(address . attila@lendvai.name)
20220414081439.3686-1-attila@lendvai.name
* gnu/packages/freedesktop.scm (libfprint): Add python dependency to
native-inputs. Needed by the tests.
---
gnu/packages/freedesktop.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

Toggle diff (17 lines)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 55bde8e705..f80c34a54e 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -1693,7 +1693,9 @@ (define-public libfprint
(list `(,glib "bin") ; for {glib-,}mkenums
gobject-introspection
gtk-doc/stable ; for 88 KiB of API documentation
- pkg-config))
+ pkg-config
+ ;; For tests
+ python))
(inputs
(list gusb
libgudev
--
2.35.1
A
A
Attila Lendvai wrote on 14 Apr 2022 11:49
[PATCH v2] gnu: libfprint: Fix build, add python dependency for the tests.
(address . 54926@debbugs.gnu.org)(name . Attila Lendvai)(address . attila@lendvai.name)
20220414094917.13448-1-attila@lendvai.name
* gnu/packages/freedesktop.scm (libfprint): Add python dependency to
native-inputs. Needed by the tests.
---

v2: use python-minimal instead of python

gnu/packages/freedesktop.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

Toggle diff (17 lines)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 55bde8e705..f4b63cefe6 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -1693,7 +1693,9 @@ (define-public libfprint
(list `(,glib "bin") ; for {glib-,}mkenums
gobject-introspection
gtk-doc/stable ; for 88 KiB of API documentation
- pkg-config))
+ pkg-config
+ ;; For tests
+ python-minimal))
(inputs
(list gusb
libgudev
--
2.35.1
R
R
Ricardo Wurmus wrote on 14 Apr 2022 11:55
[PATCH] gnu: libfprint: Fix build, add python dependency for the tests.
(address . 54926-done@debbugs.gnu.org)
87zgkovvih.fsf@elephly.net
Applied, thank you!

As discussed on IRC I changed “python” to “python-minimal”.

--
Ricardo
Closed
?