From d7b2b8ded518960020e9662e4dff9d7d1fa5cb5e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 19 Feb 2025 11:02:34 +0100 Subject: [PATCH] python313Packages.ocifs: add missing input --- pkgs/development/python-modules/ocifs/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/ocifs/default.nix b/pkgs/development/python-modules/ocifs/default.nix index af0194f2f0c8..55d9ddc790dd 100644 --- a/pkgs/development/python-modules/ocifs/default.nix +++ b/pkgs/development/python-modules/ocifs/default.nix @@ -6,6 +6,7 @@ fsspec, oci, pythonOlder, + requests, }: buildPythonPackage rec { @@ -22,11 +23,12 @@ buildPythonPackage rec { hash = "sha256-IGl9G4NyzhcqrfYfgeZin+wt1OwHmh6780MPfZBwsXA="; }; - nativeBuildInputs = [ flit-core ]; + build-system = [ flit-core ]; - propagatedBuildInputs = [ + dependencies = [ fsspec oci + requests ]; # Module has no tests @@ -38,7 +40,7 @@ buildPythonPackage rec { description = "Oracle Cloud Infrastructure Object Storage fsspec implementation"; homepage = "https://ocifs.readthedocs.io"; changelog = "https://github.com/oracle/ocifs/releases/tag/v${version}"; - license = with licenses; [ upl ]; + license = licenses.upl; maintainers = with maintainers; [ fab ]; }; }