504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
24 lines
727 B
Nix
24 lines
727 B
Nix
{ lib, buildPythonApplication, fetchFromGitHub, python-dotenv, pyyaml }:
|
|
|
|
buildPythonApplication rec {
|
|
version = "1.0.6";
|
|
pname = "podman-compose";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "podman-compose";
|
|
owner = "containers";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-TsNM5xORqwWge+UCijKptwbAcIz1uZFN9BuIOl28vIU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pyyaml python-dotenv ];
|
|
|
|
meta = {
|
|
description = "An implementation of docker-compose with podman backend";
|
|
homepage = "https://github.com/containers/podman-compose";
|
|
license = lib.licenses.gpl2Only;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = [ lib.maintainers.sikmir ] ++ lib.teams.podman.members;
|
|
mainProgram = "podman-compose";
|
|
};
|
|
}
|