summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/oci/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/oci/default.nix')
-rw-r--r--pkgs/development/python-modules/oci/default.nix34
1 files changed, 18 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/oci/default.nix b/pkgs/development/python-modules/oci/default.nix
index c0d759db7b22..c09d9873c82f 100644
--- a/pkgs/development/python-modules/oci/default.nix
+++ b/pkgs/development/python-modules/oci/default.nix
@@ -1,15 +1,16 @@
-{ lib
-, buildPythonPackage
-, certifi
-, circuitbreaker
-, cryptography
-, fetchFromGitHub
-, pyopenssl
-, python-dateutil
-, pythonOlder
-, pythonRelaxDepsHook
-, pytz
-, setuptools
+{
+ lib,
+ buildPythonPackage,
+ certifi,
+ circuitbreaker,
+ cryptography,
+ fetchFromGitHub,
+ pyopenssl,
+ python-dateutil,
+ pythonOlder,
+ pythonRelaxDepsHook,
+ pytz,
+ setuptools,
}:
buildPythonPackage rec {
@@ -48,15 +49,16 @@ buildPythonPackage rec {
# Tests fail: https://github.com/oracle/oci-python-sdk/issues/164
doCheck = false;
- pythonImportsCheck = [
- "oci"
- ];
+ 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 ];
+ license = with licenses; [
+ asl20 # or
+ upl
+ ];
maintainers = with maintainers; [ ilian ];
};
}