podman-compose: Don't wrap podman

Podman is now a wrapped with it's container runtimes in the podman
closure.

This means that the podman passed to podman-compose is not necessarily
the one that the user wants to use as it lacks user configured
container runtimes.

This change aims to make package composition more intuitive by
defering the installation of podman to the user of podman-compose.
gstqt5
adisbladis 2020-05-22 06:31:07 +01:00
parent e061c4bab3
commit 0c70afa6d1
No known key found for this signature in database
GPG Key ID: 110BFAD44C6249B7
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ lib, buildPythonApplication, fetchPypi, podman, pyyaml }:
{ lib, buildPythonApplication, fetchPypi, pyyaml }:
buildPythonApplication rec {
version = "0.1.5";
@ -9,7 +9,7 @@ buildPythonApplication rec {
sha256 = "1sgbc889zq127qhxa9frhswa1mid19fs5qnyzfihx648y5i968pv";
};
propagatedBuildInputs = [ pyyaml podman ];
propagatedBuildInputs = [ pyyaml ];
meta = {
description = "An implementation of docker-compose with podman backend";