Merge pull request #305532 from NixOS/update/podman_compose_v110

podman-compose: 1.0.6 -> 1.1.0
This commit is contained in:
Pol Dellaiera 2024-04-20 22:27:15 +02:00 committed by GitHub
commit 82d58172a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 4 deletions

View File

@ -1,17 +1,24 @@
{ lib, buildPythonApplication, fetchFromGitHub, python-dotenv, pyyaml }:
{ lib, buildPythonApplication, fetchFromGitHub, python-dotenv, pyyaml, setuptools, pipBuildHook, pypaBuildHook }:
buildPythonApplication rec {
version = "1.0.6";
version = "1.1.0";
pname = "podman-compose";
pyproject = true;
src = fetchFromGitHub {
repo = "podman-compose";
owner = "containers";
rev = "v${version}";
sha256 = "sha256-TsNM5xORqwWge+UCijKptwbAcIz1uZFN9BuIOl28vIU=";
sha256 = "sha256-uNgzdLrnDIABtt0L2pvsil14esRzl0XcWohgf7Oksr8=";
};
propagatedBuildInputs = [ pyyaml python-dotenv ];
build-system = [
setuptools
];
dependencies = [ python-dotenv pyyaml ];
propagatedBuildInputs = [ pypaBuildHook ];
meta = {
description = "An implementation of docker-compose with podman backend";