Merge pull request #218610 from fabaff/oci-fix

python310Packages.oci: 2.92.0 -> 2.93.0

Changed files
+15 -11
pkgs
development
python-modules
+15 -11
pkgs/development/python-modules/oci/default.nix
···
, pyopenssl
, python-dateutil
, pythonOlder
+
, pythonRelaxDepsHook
, pytz
}:
buildPythonPackage rec {
pname = "oci";
-
version = "2.92.0";
+
version = "2.93.0";
format = "setuptools";
-
disabled = pythonOlder "3.6";
+
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "oracle";
repo = "oci-python-sdk";
rev = "refs/tags/v${version}";
-
hash = "sha256-evxY/1MhSCZOTjhH/2tI5amnZpd+fCdSdFBD4W9uZ+c=";
+
hash = "sha256-yH9SCrTASP+O9VLVs6tliteCOWi+Pc7nDOgiboHQE4s=";
};
+
pythonRelaxDeps = [
+
"cryptography"
+
"pyOpenSSL"
+
];
+
+
nativeBuildInputs = [
+
pythonRelaxDepsHook
+
];
+
propagatedBuildInputs = [
certifi
circuitbreaker
···
pytz
];
-
postPatch = ''
-
substituteInPlace setup.py \
-
--replace "configparser==4.0.2 ; python_version < '3'" "" \
-
--replace "cryptography>=3.2.1,<=37.0.2" "cryptography" \
-
--replace "pyOpenSSL>=17.5.0,<=22.0.0" "pyOpenSSL"
-
'';
-
# Tests fail: https://github.com/oracle/oci-python-sdk/issues/164
doCheck = false;
···
meta = with lib; {
description = "Oracle Cloud Infrastructure Python SDK";
-
homepage = "https://oracle-cloud-infrastructure-python-sdk.readthedocs.io/";
+
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 ];
};