This is an automated email from the git hooks/post-receive script.
dannym pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 4a314f880b gnu: podman-compose: Fix build.
4a314f880b is described below
commit 4a314f880be5c71b59b6d72a9b238b938c348563
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Sat Dec 14 12:32:15 2024 +0100
gnu: podman-compose: Fix build.
* gnu/packages/containers.scm (podman-compose)[native-inputs]: Add
python-setuptools, python-wheel.
Change-Id: I1127e9630a5aea9a8fcf3244025d81c92df74670
---
gnu/packages/containers.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/containers.scm b/gnu/packages/containers.scm
index 4e3bb7ab4f..0755ba23f3 100644
--- a/gnu/packages/containers.scm
+++ b/gnu/packages/containers.scm
@@ -56,6 +56,7 @@
#:use-module (gnu packages networking)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python-xyz)
+ #:use-module (gnu packages python-build)
#:use-module (gnu packages python-check)
#:use-module (gnu packages rust-apps)
#:use-module (gnu packages selinux)
@@ -593,7 +594,7 @@ To get @code{podman machine} working, install
@code{qemu-minimal}, and
(arguments
(list
#:test-flags #~(list "pytests")))
- (native-inputs (list python-pytest python-parameterized))
+ (native-inputs (list python-pytest python-parameterized python-setuptools
python-wheel))
(propagated-inputs (list python-dotenv python-pyyaml))
(home-page "https://github.com/containers/podman-compose")
(synopsis "Script to run docker-compose.yml using podman")