12 buildPythonPackage rec {
16 src = fetchFromGitHub {
18 repo = "oci-python-sdk";
20 hash = "sha256-scG/ZhWeiCgXp7iD6arWIN8KZecSjKLsCW4oXeJvx6M=";
24 substituteInPlace setup.py \
25 --replace "configparser==4.0.2" "configparser" \
26 --replace "cryptography==3.2.1" "cryptography" \
27 --replace "pyOpenSSL>=17.5.0,<=19.1.0" "pyOpenSSL"
30 propagatedBuildInputs = [
31 certifi configparser cryptography pyopenssl dateutil pytz
34 # Tests fail: https://github.com/oracle/oci-python-sdk/issues/164
37 pythonImportsCheck = [ "oci" ];
40 description = "Oracle Cloud Infrastructure Python SDK";
41 homepage = "https://oracle-cloud-infrastructure-python-sdk.readthedocs.io/en/latest/index.html";
42 maintainers = with maintainers; [ ilian ];
43 license = with licenses; [ asl20 upl ];