Unverified Commit 82d58172 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #305532 from NixOS/update/podman_compose_v110

podman-compose: 1.0.6 -> 1.1.0
parents 899abe3e 9c42b802
Loading
Loading
Loading
Loading
+11 −4
Original line number Diff line number Diff line
{ 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";