c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
23 lines
691 B
Nix
23 lines
691 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;
|
|
};
|
|
}
|