diff options
Diffstat (limited to 'pkgs/development/python-modules/ocifs/default.nix')
-rw-r--r-- | pkgs/development/python-modules/ocifs/default.nix | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/ocifs/default.nix b/pkgs/development/python-modules/ocifs/default.nix index 8fab505c310d..d613106bc718 100644 --- a/pkgs/development/python-modules/ocifs/default.nix +++ b/pkgs/development/python-modules/ocifs/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, flit-core -, fsspec -, oci -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + flit-core, + fsspec, + oci, + pythonOlder, }: buildPythonPackage rec { @@ -21,9 +22,7 @@ buildPythonPackage rec { hash = "sha256-IGl9G4NyzhcqrfYfgeZin+wt1OwHmh6780MPfZBwsXA="; }; - nativeBuildInputs = [ - flit-core - ]; + nativeBuildInputs = [ flit-core ]; propagatedBuildInputs = [ fsspec @@ -33,9 +32,7 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - pythonImportsCheck = [ - "ocifs" - ]; + pythonImportsCheck = [ "ocifs" ]; meta = with lib; { description = "Oracle Cloud Infrastructure Object Storage fsspec implementation"; |