1 { lib, buildPythonApplication, fetchFromGitHub, python-dotenv, pyyaml, setuptools, pypaBuildHook }:
3 buildPythonApplication rec {
5 pname = "podman-compose";
8 src = fetchFromGitHub {
9 repo = "podman-compose";
12 hash = "sha256-40RatexY/6eRfCodaiBeJpyt1sDUj2STSPL0gBECdRs=";
19 dependencies = [ python-dotenv pyyaml ];
20 propagatedBuildInputs = [ pypaBuildHook ];
23 description = "Implementation of docker-compose with podman backend";
24 homepage = "https://github.com/containers/podman-compose";
25 license = lib.licenses.gpl2Only;
26 platforms = lib.platforms.unix;
27 maintainers = [ lib.maintainers.sikmir ] ++ lib.teams.podman.members;
28 mainProgram = "podman-compose";