nixpkgs/pkgs/tools/admin/oci-cli/default.nix

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

83 lines
1.8 KiB
Nix
Raw Normal View History

2022-01-10 12:29:45 +03:00
{ lib
, fetchFromGitHub
, python3
}:
2021-04-14 14:33:26 +03:00
let
2022-01-10 12:29:45 +03:00
py = python3.override {
packageOverrides = self: super: {
click = super.click.overridePythonAttrs (oldAttrs: rec {
version = "7.1.2";
2021-04-14 14:33:26 +03:00
2022-01-10 12:29:45 +03:00
src = oldAttrs.src.override {
inherit version;
hash = "sha256-0rUlXHxjSbwb0eWeCM0SrLvWPOZJ8liHVXg6qU37axo=";
};
});
2021-04-14 14:33:26 +03:00
jmespath = super.jmespath.overridePythonAttrs (oldAttrs: rec {
version = "0.10.0";
src = oldAttrs.src.override {
inherit version;
sha256 = "b85d0567b8666149a93172712e68920734333c0ce7e89b78b3e987f71e5ed4f9";
};
});
2022-01-10 12:29:45 +03:00
};
};
2021-04-14 14:33:26 +03:00
in
2022-01-10 12:29:45 +03:00
with py.pkgs;
2021-04-14 14:33:26 +03:00
2022-01-10 12:29:45 +03:00
buildPythonApplication rec {
2021-04-14 14:33:26 +03:00
pname = "oci-cli";
version = "3.7.2";
2022-01-10 12:29:45 +03:00
format = "setuptools";
2021-04-14 14:33:26 +03:00
src = fetchFromGitHub {
owner = "oracle";
repo = "oci-cli";
rev = "v${version}";
hash = "sha256-20Tnn0s+sfLEsAG9S6f61OVGpRf53wFPtt4a2/TJbCg=";
2021-04-14 14:33:26 +03:00
};
2022-01-10 12:29:45 +03:00
propagatedBuildInputs = [
arrow
certifi
click
configparser
cryptography
jmespath
oci
pyopenssl
python-dateutil
pytz
pyyaml
retrying
six
terminaltables
2021-04-14 14:33:26 +03:00
];
postPatch = ''
substituteInPlace setup.py \
2022-01-10 12:29:45 +03:00
--replace "cryptography>=3.2.1,<=3.4.7" "cryptography" \
2021-04-14 14:33:26 +03:00
--replace "pyOpenSSL==19.1.0" "pyOpenSSL" \
2022-01-10 12:29:45 +03:00
--replace "PyYAML>=5.4,<6" "PyYAML" \
--replace "terminaltables==3.1.0" "terminaltables"
2021-04-14 14:33:26 +03:00
'';
2022-01-10 12:29:45 +03:00
# https://github.com/oracle/oci-cli/issues/187
doCheck = false;
pythonImportsCheck = [
" oci_cli "
];
2021-04-14 14:33:26 +03:00
meta = with lib; {
description = "Command Line Interface for Oracle Cloud Infrastructure";
homepage = "https://docs.cloud.oracle.com/iaas/Content/API/Concepts/cliconcepts.htm";
2022-01-10 12:29:45 +03:00
license = with licenses; [ asl20 /* or */ upl ];
2021-04-14 14:33:26 +03:00
maintainers = with maintainers; [ ilian ];
};
}