about summary refs log tree commit diff
path: root/pkgs/applications/virtualization/podman-compose/default.nix
blob: de3d944bacb18d6926e5998a834aca9a3d58fe0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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;
  };
}