···11-{ lib, buildPythonApplication, fetchPypi, pyyaml }:
11+{ lib, buildPythonApplication, fetchFromGitHub, pyyaml }:
2233buildPythonApplication rec {
44- version = "0.1.5";
44+ version = "0.2.0pre-2021-05-18";
55 pname = "podman-compose";
6677- src = fetchPypi {
88- inherit pname version;
99- sha256 = "1sgbc889zq127qhxa9frhswa1mid19fs5qnyzfihx648y5i968pv";
77+ # "This project is still under development." -- README.md
88+ #
99+ # As of May 2021, the latest release (0.1.5) has fewer than half of all
1010+ # commits. This project seems to have no release management, so the last
1111+ # commit is the best one until proven otherwise.
1212+ src = fetchFromGitHub {
1313+ repo = "podman-compose";
1414+ owner = "containers";
1515+ rev = "62d2024feecf312e9591cc145f49cee9c70ab4fe";
1616+ sha256 = "sha256:17992imkvi6129wvajsp0iz5iicfmh53i20qy2mzz17kcz30r2pp";
1017 };
11181219 propagatedBuildInputs = [ pyyaml ];