mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
63 lines
1.2 KiB
Nix
63 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, certifi
|
|
, circuitbreaker
|
|
, cryptography
|
|
, fetchFromGitHub
|
|
, pyopenssl
|
|
, python-dateutil
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
, pytz
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "oci";
|
|
version = "2.124.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "oracle";
|
|
repo = "oci-python-sdk";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-IYINga1qCCmdu1j6ix2GcZtx6twPwfHCxU8fPOqF4eE=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"cryptography"
|
|
"pyOpenSSL"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pythonRelaxDepsHook
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
certifi
|
|
circuitbreaker
|
|
cryptography
|
|
pyopenssl
|
|
python-dateutil
|
|
pytz
|
|
];
|
|
|
|
# Tests fail: https://github.com/oracle/oci-python-sdk/issues/164
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"oci"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Oracle Cloud Infrastructure Python SDK";
|
|
homepage = "https://github.com/oracle/oci-python-sdk";
|
|
changelog = "https://github.com/oracle/oci-python-sdk/blob/v${version}/CHANGELOG.rst";
|
|
license = with licenses; [ asl20 /* or */ upl ];
|
|
maintainers = with maintainers; [ ilian ];
|
|
};
|
|
}
|