Merge pull request #130322 from endocrimes/dani/docker-compose

pythonPackages.docker: 4.4.4 -> 5.0.0, docker-compose: 1.28.6 -> 1.29.2
This commit is contained in:
Ben Siraphob 2021-07-18 19:35:56 +07:00 committed by GitHub
commit 64c4e4bcce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -8,12 +8,12 @@
}:
buildPythonApplication rec {
version = "1.28.6";
version = "1.29.2";
pname = "docker-compose";
src = fetchPypi {
inherit pname version;
sha256 = "1d44906f7ab738ba2d1785130ed31b16111eee6dc5a1dbd7252091dae48c5281";
sha256 = "sha256-TIzZ0h0jdBJ5PRi9MxEASe6a+Nqz/iwhO70HM5WbCbc=";
};
# lots of networking and other fails

View file

@ -14,11 +14,11 @@
buildPythonPackage rec {
pname = "docker";
version = "4.4.4";
version = "5.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "d3393c878f575d3a9ca3b94471a3c89a6d960b35feb92f033c0de36cc9d934db";
sha256 = "sha256-PovEdTTgypMx1ywy8ogbsTuT3tC83qs8gz+3z2HAqaU=";
};
nativeBuildInputs = lib.optional isPy27 mock;