0c70afa6d1
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.
21 lines
595 B
Nix
21 lines
595 B
Nix
{ lib, buildPythonApplication, fetchPypi, pyyaml }:
|
|
|
|
buildPythonApplication rec {
|
|
version = "0.1.5";
|
|
pname = "podman-compose";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1sgbc889zq127qhxa9frhswa1mid19fs5qnyzfihx648y5i968pv";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pyyaml ];
|
|
|
|
meta = {
|
|
description = "An implementation of docker-compose with podman backend";
|
|
homepage = "https://github.com/containers/podman-compose";
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ lib.maintainers.sikmir ] ++ lib.teams.podman.members;
|
|
};
|
|
}
|