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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, buildPythonApplication, fetchPypi, pythonOlder
2020-05-31 13:49:29 +00:00
, installShellFiles
2017-01-27 11:26:29 +00:00
, mock, pytest, nose
, pyyaml, backports_ssl_match_hostname, colorama, docopt
, dockerpty, docker, ipaddress, jsonschema, requests
, six, texttable, websocket-client, cached-property
, enum34, functools32, paramiko, distro, python-dotenv
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 {
2021-07-15 23:16:24 +00:00
version = "1.29.2";
pname = "docker-compose";
2017-01-27 11:26:29 +00:00
2017-10-25 18:04:35 +00:00
src = fetchPypi {
inherit pname version;
2021-07-15 23:16:24 +00:00
sha256 = "sha256-TIzZ0h0jdBJ5PRi9MxEASe6a+Nqz/iwhO70HM5WbCbc=";
2017-01-27 11:26:29 +00:00
};
# lots of networking and other fails
doCheck = false;
2020-05-31 13:49:29 +00:00
nativeBuildInputs = [ installShellFiles ];
2017-12-30 10:03:43 +00:00
checkInputs = [ mock pytest nose ];
2017-01-27 11:26:29 +00:00
propagatedBuildInputs = [
pyyaml colorama dockerpty docker
ipaddress jsonschema requests six texttable websocket-client
docopt cached-property paramiko distro python-dotenv
] ++ lib.optional (pythonOlder "3.7") backports_ssl_match_hostname
++ lib.optional (pythonOlder "3.4") enum34
++ lib.optional (pythonOlder "3.2") functools32;
2017-01-27 11:26:29 +00:00
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 = ''
2020-05-31 13:49:29 +00:00
installShellCompletion --bash contrib/completion/bash/docker-compose
installShellCompletion --zsh contrib/completion/zsh/_docker-compose
2017-01-27 11:26:29 +00:00
'';
meta = with lib; {
homepage = "https://docs.docker.com/compose/";
2017-01-27 11:26:29 +00:00
description = "Multi-container orchestration for Docker";
license = licenses.asl20;
2020-02-06 21:05:08 +00:00
maintainers = with maintainers; [ Frostman ];
2017-01-27 11:26:29 +00:00
};
}