nixpkgs/pkgs/applications/virtualization/podman-compose/default.nix
adisbladis 0c70afa6d1
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.
2020-05-22 06:34:25 +01:00

22 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;
};
}