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

50 lines
1.5 KiB
Nix
Raw Normal View History

2017-10-25 18:04:35 +00:00
{ stdenv, buildPythonApplication, fetchPypi, pythonOlder
2017-01-27 11:26:29 +00:00
, mock, pytest, nose
, pyyaml, backports_ssl_match_hostname, colorama, docopt
, dockerpty, docker, ipaddress, jsonschema, requests
2017-01-27 11:26:29 +00:00
, six, texttable, websocket_client, cached-property
, enum34, functools32, paramiko
2017-01-27 11:26:29 +00:00
}:
2019-08-14 18:28:21 +00:00
2017-01-27 11:26:29 +00:00
buildPythonApplication rec {
2019-11-25 17:28:55 +00:00
version = "1.25.0";
pname = "docker-compose";
2017-01-27 11:26:29 +00:00
2017-10-25 18:04:35 +00:00
src = fetchPypi {
inherit pname version;
2019-11-25 17:28:55 +00:00
sha256 = "0zlprmsgmj4z627snsl0qmq8y7ggcyqrqm5vxvrvcigl7zywnprc";
2017-01-27 11:26:29 +00:00
};
# lots of networking and other fails
doCheck = false;
2017-12-30 10:03:43 +00:00
checkInputs = [ mock pytest nose ];
2017-01-27 11:26:29 +00:00
propagatedBuildInputs = [
pyyaml backports_ssl_match_hostname colorama dockerpty docker
ipaddress jsonschema requests six texttable websocket_client
docopt cached-property paramiko
2017-01-27 11:26:29 +00:00
] ++
stdenv.lib.optional (pythonOlder "3.4") enum34 ++
stdenv.lib.optional (pythonOlder "3.2") functools32;
2017-12-30 10:03:43 +00:00
postPatch = ''
# Remove upper bound on requires, see also
# https://github.com/docker/compose/issues/4431
sed -i "s/, < .*',$/',/" setup.py
2017-01-27 11:26:29 +00:00
'';
postInstall = ''
2019-08-14 18:28:21 +00:00
install -D -m 0444 contrib/completion/bash/docker-compose \
$out/share/bash-completion/completions/docker-compose
install -D -m 0444 contrib/completion/zsh/_docker-compose \
$out/share/zsh-completion/zsh/site-functions/_docker-compose
2017-01-27 11:26:29 +00:00
'';
meta = with stdenv.lib; {
homepage = https://docs.docker.com/compose/;
2017-01-27 11:26:29 +00:00
description = "Multi-container orchestration for Docker";
license = licenses.asl20;
2019-08-14 18:28:21 +00:00
maintainers = [ ];
2017-01-27 11:26:29 +00:00
};
}