nixpkgs/pkgs/applications/virtualization/podman-compose/default.nix

22 lines
586 B
Nix
Raw Normal View History

2019-12-06 09:41:40 +00:00
{ lib, buildPythonApplication, fetchPypi, podman, pyyaml }:
buildPythonApplication rec {
version = "0.1.5";
pname = "podman-compose";
src = fetchPypi {
inherit pname version;
sha256 = "1sgbc889zq127qhxa9frhswa1mid19fs5qnyzfihx648y5i968pv";
};
propagatedBuildInputs = [ pyyaml podman ];
meta = with lib; {
description = "An implementation of docker-compose with podman backend";
homepage = "https://github.com/containers/podman-compose";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ sikmir ];
};
}