···1+{ lib, buildPythonApplication, fetchFromGitHub, pyyaml }:
23buildPythonApplication rec {
4+ version = "0.2.0pre-2021-05-18";
5 pname = "podman-compose";
67+ # "This project is still under development." -- README.md
8+ #
9+ # As of May 2021, the latest release (0.1.5) has fewer than half of all
10+ # commits. This project seems to have no release management, so the last
11+ # commit is the best one until proven otherwise.
12+ src = fetchFromGitHub {
13+ repo = "podman-compose";
14+ owner = "containers";
15+ rev = "62d2024feecf312e9591cc145f49cee9c70ab4fe";
16+ sha256 = "sha256:17992imkvi6129wvajsp0iz5iicfmh53i20qy2mzz17kcz30r2pp";
17 };
1819 propagatedBuildInputs = [ pyyaml ];