8cbc9fd8da
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/docker-compose/versions. These checks were done: - built on NixOS - /nix/store/z6xj749vplzm2x4hv93l34b41cb049kb-docker-compose-1.21.2/bin/.docker-compose-wrapped passed the binary check. - /nix/store/z6xj749vplzm2x4hv93l34b41cb049kb-docker-compose-1.21.2/bin/docker-compose passed the binary check. - 2 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 1.21.2 with grep in /nix/store/z6xj749vplzm2x4hv93l34b41cb049kb-docker-compose-1.21.2 - directory tree listing: https://gist.github.com/6a7d68b839f5f57301d1c477e48ce88c - du listing: https://gist.github.com/d1fd19f768c67e0cc36e885228ca138a
48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{ stdenv, buildPythonApplication, fetchPypi, pythonOlder
|
|
, mock, pytest, nose
|
|
, pyyaml, backports_ssl_match_hostname, colorama, docopt
|
|
, dockerpty, docker, ipaddress, jsonschema, requests
|
|
, six, texttable, websocket_client, cached-property
|
|
, enum34, functools32,
|
|
}:
|
|
buildPythonApplication rec {
|
|
version = "1.21.2";
|
|
pname = "docker-compose";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0b0wihlyk89y6n0mly2vbljzqai1hhs6yzplskwdah2lfn9p3c38";
|
|
};
|
|
|
|
# lots of networking and other fails
|
|
doCheck = false;
|
|
checkInputs = [ mock pytest nose ];
|
|
propagatedBuildInputs = [
|
|
pyyaml backports_ssl_match_hostname colorama dockerpty docker
|
|
ipaddress jsonschema requests six texttable websocket_client
|
|
docopt cached-property
|
|
] ++
|
|
stdenv.lib.optional (pythonOlder "3.4") enum34 ++
|
|
stdenv.lib.optional (pythonOlder "3.2") functools32;
|
|
|
|
postPatch = ''
|
|
# Remove upper bound on requires, see also
|
|
# https://github.com/docker/compose/issues/4431
|
|
sed -i "s/, < .*',$/',/" setup.py
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/bash-completion/completions/
|
|
cp contrib/completion/bash/docker-compose $out/share/bash-completion/completions/docker-compose
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://docs.docker.com/compose/;
|
|
description = "Multi-container orchestration for Docker";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [
|
|
jgeerds
|
|
];
|
|
};
|
|
}
|