nixpkgs/pkgs/tools/virtualization/awsebcli/default.nix

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

97 lines
2.8 KiB
Nix
Raw Normal View History

2022-06-04 02:13:44 +00:00
{ lib, python3, glibcLocales, docker-compose_1 }:
2017-09-01 11:51:28 +00:00
let
2022-06-04 02:13:44 +00:00
docker_compose = changeVersion (with localPython.pkgs; docker-compose_1.override {
2022-02-14 11:28:31 +00:00
inherit colorama pyyaml six dockerpty docker jsonschema requests websocket-client paramiko;
}).overridePythonAttrs "1.25.5" "sha256-ei622Bc/30COUF5vfUl6wLd3OIcZVCvp5JoO/Ud6UMY=";
2017-09-01 11:51:28 +00:00
changeVersion = overrideFunc: version: hash: overrideFunc (oldAttrs: rec {
2022-02-14 11:28:31 +00:00
inherit version;
src = oldAttrs.src.override {
inherit version hash;
2022-02-14 11:28:31 +00:00
};
});
2017-09-01 11:51:28 +00:00
2022-02-14 11:28:31 +00:00
localPython = python3.override
{
self = localPython;
packageOverrides = self: super: {
cement = changeVersion super.cement.overridePythonAttrs "2.8.2" "sha256-h2XtBSwGHXTk0Bia3cM9Jo3lRMohmyWdeXdB9yXkItI=";
wcwidth = changeVersion super.wcwidth.overridePythonAttrs "0.1.9" "sha256-7nOGKGKhVr93/5KwkDT8SCXdOvnPgbxbNgZo1CXzxfE=";
semantic-version = changeVersion super.semantic-version.overridePythonAttrs "2.8.5" "sha256-0sst4FWHYpNGebmhBOguynr0SMn0l00fPuzP9lHfilQ=";
2022-02-14 11:28:31 +00:00
pyyaml = super.pyyaml.overridePythonAttrs (oldAttrs: rec {
version = "5.4.1";
checkPhase = ''
runHook preCheck
PYTHONPATH="tests/lib3:$PYTHONPATH" ${localPython.interpreter} -m test_all
runHook postCheck
'';
src = localPython.pkgs.fetchPypi {
pname = "PyYAML";
inherit version;
hash = "sha256-YHd0y7oocyv6gCtUuqdIQhX1MJkQVbtWLvvtWy8gpF4=";
2022-02-14 11:28:31 +00:00
};
});
};
2017-09-01 11:51:28 +00:00
};
2022-02-14 11:28:31 +00:00
in
with localPython.pkgs; buildPythonApplication rec {
2017-09-01 11:51:28 +00:00
pname = "awsebcli";
2023-03-13 05:07:49 +00:00
version = "3.20.5";
2017-09-01 11:51:28 +00:00
src = fetchPypi {
inherit pname version;
2023-03-13 05:07:49 +00:00
hash = "sha256-EoSEanwGvP3RcemXrVy7iAGrY/vMC6LbwcrXj2OsF8Q=";
2017-09-01 11:51:28 +00:00
};
preConfigure = ''
2023-03-13 05:07:49 +00:00
substituteInPlace requirements.txt \
--replace "six>=1.11.0,<1.15.0" "six==1.16.0" \
--replace "requests>=2.20.1,<=2.26" "requests<3" \
2023-03-13 05:07:49 +00:00
--replace "pathspec==0.10.1" "pathspec>=0.10.0,<1" \
--replace "colorama>=0.2.5,<0.4.4" "colorama>=0.2.5,<=0.4.6" \
--replace "termcolor == 1.1.0" "termcolor>=2.0.0,<3"
'';
buildInputs = [
glibcLocales
];
nativeCheckInputs = [
2022-02-14 11:28:31 +00:00
pytest
mock
nose
pathspec
colorama
requests
docutils
2017-09-01 11:51:28 +00:00
];
2022-02-14 11:28:31 +00:00
doCheck = true;
2017-09-01 11:51:28 +00:00
propagatedBuildInputs = [
2022-02-14 11:28:31 +00:00
blessed
botocore
cement
colorama
pathspec
pyyaml
future
requests
semantic-version
setuptools
tabulate
termcolor
websocket-client
docker_compose
2017-09-01 11:51:28 +00:00
];
meta = with lib; {
homepage = "https://aws.amazon.com/elasticbeanstalk/";
2018-02-27 23:34:10 +00:00
description = "A command line interface for Elastic Beanstalk";
2023-03-13 05:07:49 +00:00
changelog = "https://github.com/aws/aws-elastic-beanstalk-cli/blob/${version}/CHANGES.rst";
2023-03-07 20:12:38 +00:00
maintainers = with maintainers; [ eqyiel kirillrdy ];
2017-09-01 11:51:28 +00:00
license = licenses.asl20;
};
}